-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.14 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.14 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "davatar",
"type": "module",
"version": "2.7.5",
"packageManager": "pnpm@10.30.3",
"scripts": {
"dev": "vite",
"dev:mock": "vite dev --mode mock",
"build": "rimraf dist/assets/* && vite build",
"serve": "vite preview",
"lint": "eslint --cache src",
"bump": "bumpp package.json --commit \"release: v\" --push --tag",
"up:deps": "taze major",
"prepare": "npx simple-git-hooks",
"up:polyfill": "nolyfill install",
"typecheck": "vue-tsc --noEmit"
},
"dependencies": {
"@vueuse/components": "^13.9.0",
"@vueuse/core": "^13.9.0",
"axios": "^1.13.6",
"hoci": "^0.9.0",
"pinia": "^3.0.4",
"query-string": "^9.3.1",
"tslx": "^0.3.0",
"vue": "^3.5.29",
"vue-router": "^4.6.4",
"vue-virtual-scroller": "2.0.0-beta.8",
"workbox-expiration": "^7.4.0",
"workbox-strategies": "^7.4.0"
},
"devDependencies": {
"@curev/eslint-config": "^0.6.1",
"@fourze/core": "^0.31.3",
"@fourze/vite": "^0.31.3",
"@iconify-json/ic": "^1.2.4",
"@types/node": "^20.19.35",
"@unocss/eslint-plugin": "^66.6.2",
"@unocss/preset-icons": "^66.6.2",
"@vitejs/plugin-vue": "^5.2.4",
"@vitejs/plugin-vue-jsx": "^4.2.0",
"bumpp": "^10.4.1",
"eslint": "^9.39.3",
"less": "^4.5.1",
"lint-staged": "^16.2.7",
"nolyfill": "^1.0.44",
"prettier": "^3.8.1",
"rimraf": "^6.1.3",
"sass": "^1.97.3",
"simple-git-hooks": "^2.13.1",
"taze": "^19.9.2",
"typescript": "^5.9.3",
"unocss": "^66.6.2",
"unocss-preset-palette": "^0.4.0",
"unplugin-vue-components": "^28.8.0",
"vite": "^6.4.1",
"vite-plugin-pwa": "^1.2.0",
"vue-tsc": "^2.2.12",
"workbox-core": "^7.4.0",
"workbox-precaching": "^7.4.0",
"workbox-routing": "^7.4.0",
"workbox-window": "^7.4.0"
},
"pnpm": {
"overrides": {
"is-core-module": "npm:@nolyfill/is-core-module@^1.0.39",
"string.prototype.matchall": "npm:@nolyfill/string.prototype.matchall@^1.0.44"
}
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,vue}": [
"npx eslint --fix --cache"
]
}
}