-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.76 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
{
"name": "nonebot-registry",
"license": "MIT",
"packageManager": "pnpm@11.18.0",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"build:preview": "vue-tsc && vite build --mode preview",
"preview": "vite preview",
"lint": "eslint \"**/*.{js,ts,vue}\"",
"lint:fix": "eslint --fix \"**/*.{js,ts,vue}\"",
"prepare": "simple-git-hooks"
},
"dependencies": {
"@mdi/js": "^7.4.47",
"@sentry/vue": "^10.69.0",
"@vueuse/core": "^14.4.0",
"ansi_up": "^6.0.6",
"gsap": "^3.15.0",
"highlight.js": "^11.11.1",
"naive-ui": "^2.44.1",
"pinia": "^3.0.4",
"vue": "^3.5.40",
"vue-router": "^5.2.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@sentry/vite-plugin": "^5.4.0",
"@types/node": "^25.9.5",
"@unocss/eslint-config": "^66.7.5",
"@unocss/transformer-directives": "^66.7.5",
"@vitejs/plugin-vue": "^6.0.8",
"@vue/tsconfig": "^0.9.1",
"eslint": "^10.8.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import-x": "^4.17.1",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-unicorn": "^72.0.0",
"eslint-plugin-vue": "^10.10.0",
"globals": "^17.8.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.0",
"prettier": "^3.9.6",
"rollup-plugin-visualizer": "^7.0.1",
"sass": "^1.102.0",
"sass-loader": "^17.0.0",
"simple-git-hooks": "^2.13.1",
"typescript": "~6.0.3",
"typescript-eslint": "8.65.0",
"unocss": "^66.7.5",
"vite": "^8.2.0",
"vue-eslint-parser": "^10.4.1",
"vue-tsc": "^3.3.0"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"**/*.{js,ts,vue}": [
"eslint --fix --cache"
]
}
}