-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
73 lines (73 loc) · 2.15 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
66
67
68
69
70
71
72
73
{
"name": "jenkins-helper",
"type": "module",
"version": "3.0.0",
"private": true,
"description": "Monitor Jenkins build state and node state, and provide some convenient services.",
"engines": {
"node": ">=18",
"pnpm": ">=8"
},
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"preview": "vite preview",
"lint": "eslint scripts src",
"lint:fix": "eslint scripts src --fix",
"test": "vitest test",
"browserslist": "browserslist --config=./.browserslistrc",
"prepare": "husky install",
"taze": "npx taze"
},
"dependencies": {
"localforage": "^1.10.0",
"naive-ui": "^2.37.3",
"pinia": "^2.1.7",
"vue": "^3.4.15",
"vue-router": "^4.2.5",
"webextension-polyfill": "^0.10.0"
},
"devDependencies": {
"@antfu/eslint-config": "^2.6.4",
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"@crxjs/vite-plugin": "2.0.0-beta.23",
"@iconify/json": "^2.2.168",
"@nodelib/fs.scandir": "^3.0.0",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.10.5",
"@types/webextension-polyfill": "^0.10.7",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"@unocss/preset-uno": "^0.58.4",
"@vicons/ionicons5": "^0.12.0",
"@vitejs/plugin-vue": "^3.2.0",
"@vue/test-utils": "^2.4.4",
"@vueuse/core": "^10.7.2",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"eslint-plugin-vue": "^9.20.1",
"fs-extra": "^11.2.0",
"husky": "^8.0.3",
"kolorist": "^1.8.0",
"postcss": "^8.4.33",
"postcss-html": "^1.6.0",
"postcss-scss": "^4.0.9",
"rfdc": "^1.3.1",
"sass": "^1.70.0",
"stylelint": "^15.11.0",
"stylelint-config-recess-order": "^4.4.0",
"stylelint-config-recommended-scss": "^13.1.0",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-standard-scss": "^11.1.0",
"typescript": "^5.3.3",
"unocss": "^0.58.4",
"unplugin-auto-import": "^0.17.5",
"unplugin-vue-components": "^0.26.0",
"vfonts": "^0.0.3",
"vite": "^3.2.8",
"vitest": "^0.34.6",
"vue-demi": "^0.14.7",
"vue-tsc": "^1.8.27"
}
}