-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.14 KB
/
package.json
File metadata and controls
80 lines (80 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
79
80
{
"name": "dev-mini-tool",
"version": "1.0.0",
"description": "Web效率工具",
"main": "index.ts",
"type": "module",
"keywords": [
"frontend",
"web",
"devtool"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "vite",
"preview": "vite preview",
"build": "vite build",
"postbuild": "node scripts/move-sourcemaps.js",
"prepare": "husky",
"eslint": "eslint . --max-warnings=0",
"eslint:fix": "eslint . --fix",
"lint-staged": "lint-staged",
"lint:style": "prettier --check .",
"lint:type": "tsc --noEmit",
"lint": "npm run lint:style && npm run lint:type",
"release": "commit-and-tag-version"
},
"author": "",
"license": "ISC",
"lint-staged": {
"src/**/*.{ts,tsx,cts,vue}": [
"pnpm run eslint"
],
"src/**/*.{js,jsx,cjs,mjs,mts}": [
"pnpm run eslint"
]
},
"commit-and-tag-version": {
"packageFiles": [
"package.json"
],
"bumpFiles": [
"package.json"
]
},
"dependencies": {
"@ant-design/icons-vue": "^7.0.1",
"@isq/storage": "^1.0.3",
"ant-design-vue": "4.2.6",
"lodash-es": "^4.17.23",
"pinia": "^3.0.4",
"terser": "^5.46.0",
"vue": "^3.5.12",
"vue-json-pretty": "^2.6.0",
"vue-router": "^4.4.5"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/js": "^9.18.0",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.10.1",
"@vitejs/plugin-vue-jsx": "^4.1.1",
"commit-and-tag-version": "^12.4.4",
"eslint": "^9.14.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-vue": "^9.32.0",
"globals": "^15.14.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.1",
"prettier": "^3.3.3",
"sass": "^1.82.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.20.0",
"vite": "^6.0.10",
"vite-plugin-checker": "^0.8.0",
"vite-plugin-inspect": "^11.3.3",
"vue-tsc": "2.1.6"
},
"packageManager": "pnpm@9.12.3+sha512.cce0f9de9c5a7c95bef944169cc5dfe8741abfb145078c0d508b868056848a87c81e626246cb60967cbd7fd29a6c062ef73ff840d96b3c86c40ac92cf4a813ee"
}