-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 852 Bytes
/
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
{
"name": "jsdesign-plugin-starter",
"id": "1125674739431154178",
"type": "module",
"version": "0.0.0",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"vue": "^3.2.47"
},
"devDependencies": {
"@antfu/eslint-config": "^0.38.6",
"@jsdesigndeveloper/plugin-typings": "^1.0.11",
"@types/node": "^20.4.8",
"@unocss/eslint-config": "^0.51.13",
"@vitejs/plugin-vue": "^4.1.0",
"eslint": "^8.40.0",
"typescript": "^5.0.2",
"unocss": "^0.51.13",
"vite": "^4.3.2",
"vite-plugin-singlefile": "^0.13.5",
"vue-tsc": "^1.4.2"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}