-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.57 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.57 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "tabdav",
"version": "2.4.1",
"description": "TabDav - 跨设备Tab管理浏览器插件,支持WebDav同步",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"lint": "eslint . --ext ts,vue --fix",
"format": "prettier --write src/",
"release": "npm run build && vite zip"
},
"keywords": [
"chrome-extension",
"browser-extension",
"tab-manager",
"webdav",
"tab-collection"
],
"author": "TabDav",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@vueuse/core": "^10.7.0",
"axios": "^1.6.0",
"idb": "^8.0.0",
"pinia": "^2.1.0",
"uuid": "^9.0.0",
"vue": "^3.4.0"
},
"devDependencies": {
"@testing-library/vue": "^8.1.0",
"@types/chrome": "^0.0.254",
"@types/node": "^20.10.0",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^8.57.1",
"@typescript-eslint/parser": "^8.57.1",
"@vitejs/plugin-vue": "^4.5.0",
"@vitest/coverage-v8": "^4.0.17",
"@vitest/ui": "^4.0.17",
"@vue/test-utils": "^2.4.6",
"eslint": "^8.55.0",
"eslint-plugin-vue": "^9.19.0",
"jsdom": "^27.4.0",
"prettier": "^3.1.0",
"sass": "^1.69.0",
"sharp": "^0.34.5",
"typescript": "^5.3.0",
"vite": "^5.0.0",
"vite-plugin-static-copy": "^3.1.5",
"vite-plugin-zip-pack": "^1.0.5",
"vitest": "^4.0.17",
"vue-tsc": "^1.8.0"
}
}