-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "room-door-client",
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"preview": "vite preview",
"test": "vitest",
"test:ui": "vitest --ui",
"lint": "oxlint src/",
"lint:fix": "oxlint --fix src/",
"format": "dprint fmt",
"build:gh-pages": "GITHUB_PAGES=true bun run build",
"deploy:gh-pages": "./scripts/deploy-gh-pages.sh",
"preview:gh-pages": "cd dist && python -m http.server 8080"
},
"dependencies": {
"@vueuse/core": "^13.4.0",
"crypto-js": "^4.2.0",
"pinia": "^3.0.3",
"vue": "^3.5.17"
},
"devDependencies": {
"@types/crypto-js": "^4.2.2",
"@vitejs/plugin-vue": "^5.0.2",
"@vue/test-utils": "^2.4.3",
"dprint": "^0.50.0",
"happy-dom": "^18.0.1",
"lightningcss": "^1.22.1",
"oxlint": "^1.3.0",
"typescript": "^5.8.3",
"unocss": "^66.2.3",
"vite": "^6.3.5",
"vite-plugin-pwa": "^1.0.0",
"vitest": "^3.2.4",
"vue-tsc": "^2.2.10"
}
}