-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
65 lines (65 loc) · 2.03 KB
/
package.json
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
{
"name": "nonebot-registry",
"license": "MIT",
"packageManager": "[email protected]",
"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",
"stylelint": "stylelint",
"stylelint:fix": "npm run stylelint --fix",
"lint": "npm run lint:js && npm run lint:style",
"lint:fix": "npm run lint:js:fix && npm run lint:style:fix",
"lint:js": "eslint \"**/*.{js,jsx,ts,tsx,cjs,mjs,vue}\"",
"lint:js:fix": "eslint --fix \"**/*.{js,jsx,ts,tsx,cjs,mjs,vue}\"",
"lint:style": "npm run stylelint \"**/*.{css,scss}\"",
"lint:style:fix": "npm run stylelint:fix \"**/*.{css,scss}\"",
"prepare": "node .husky/install.mjs"
},
"dependencies": {
"@mdi/js": "^7.4.47",
"@sentry/vue": "^8.37.1",
"@vueuse/core": "^11.2.0",
"ansi_up": "^6.0.2",
"gsap": "^3.12.5",
"highlight.js": "^11.10.0",
"naive-ui": "^2.40.1",
"pinia": "^2.2.6",
"vue": "^3.5.12",
"vue-router": "^4.4.5"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@sentry/vite-plugin": "^2.22.6",
"@types/node": "^22.9.0",
"@unocss/eslint-config": "^0.64.0",
"@unocss/transformer-directives": "^0.64.0",
"@vitejs/plugin-vue": "^5.1.5",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import-x": "^4.4.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-unicorn": "^56.0.0",
"eslint-plugin-vue": "^9.30.0",
"globals": "^15.12.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"rollup-plugin-visualizer": "^5.12.0",
"sass": "^1.80.6",
"sass-loader": "^16.0.3",
"stylelint": "^16.10.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-prettier": "^5.0.2",
"typescript": "^5.6.3",
"typescript-eslint": "8.13.0",
"unocss": "^0.64.0",
"vite": "^5.4.11",
"vue-tsc": "^2.1.10"
}
}