-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
58 lines (58 loc) · 1.49 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
{
"name": "nav",
"version": "1.4.0",
"description": "a collection of used website navigation",
"private": "true",
"packageManager": "pnpm@9.0.6",
"author": "liuxingyu521",
"type": "module",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "vite-ssg build",
"build:dataset": "tsx scripts/build-dataset.ts",
"preview": "vite preview",
"analyze": "cross-env ANALYZE=true pnpm build",
"release": "npx bumpp",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"repository": "https://github.com/liuxingyu521/nav",
"dependencies": {
"@unocss/reset": "^0.59.4",
"@vueuse/core": "^10.9.0",
"element-plus": "^2.7.2",
"vue": "^3.4.26"
},
"devDependencies": {
"@iconify-json/fa": "^1.1.8",
"@liuxingyu521/eslint-config": "^2.0.0",
"@types/node": "^20.14.10",
"@vitejs/plugin-vue": "5.0.4",
"@vueuse/head": "^2.0.0",
"cross-env": "^7.0.3",
"eslint": "9.2.0",
"eslint-plugin-n": "^17.4.0",
"got": "^14.4.1",
"less": "4.2.0",
"ora": "^8.0.1",
"parse-favicon": "^7.0.1",
"rollup-plugin-visualizer": "^5.12.0",
"simple-git-hooks": "^2.11.1",
"tsx": "^4.16.2",
"typescript": "5.4.5",
"unocss": "^0.59.4",
"unplugin-auto-import": "0.17.5",
"unplugin-vue-components": "0.27.0",
"vite": "^5.2.11",
"vite-ssg": "^0.23.7"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,json,yml,vue}": [
"eslint --fix"
]
}
}