-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.16 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.16 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
40
41
42
43
44
{
"name": "ssl-vision-client",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"type-check": "vue-tsc --build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --check src/",
"format:fix": "prettier --write src/",
"test": "vitest",
"test:run": "vitest run",
"check": "run-p type-check lint format test:run build"
},
"dependencies": {
"@bufbuild/protobuf": "^2.11.0",
"@vueuse/core": "^14.0.0",
"vue": "^3.5.31"
},
"devDependencies": {
"@tsconfig/node24": "^24.0.4",
"@types/google-protobuf": "^3.15.12",
"@types/node": "^24.12.0",
"@vitejs/plugin-vue": "^6.0.0",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.7.0",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.9.0",
"eslint": "^10.0.0",
"eslint-plugin-vue": "~10.8.0",
"jiti": "^2.6.1",
"jsdom": "^29.0.1",
"npm-run-all2": "^8.0.0",
"prettier": "3.8.1",
"typescript": "~6.0.0",
"vite": "^6.4.1",
"vitest": "^4.1.2",
"vue-tsc": "^2.2.12"
}
}