-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (65 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
59
60
61
62
63
64
65
66
{
"name": "zeal-ui",
"version": "0.0.1",
"packageManager": "[email protected]",
"description": "A Vue 3 UI library",
"author": "chansee97",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/chansee97zeal-ui"
},
"keywords": [
"zeal-ui",
"component library",
"ui framework",
"ui",
"vue"
],
"main": "index.js",
"scripts": {
"dev": "pnpm -C play dev --open",
"dev:docs": "pnpm -C packages/docs dev",
"build": "pnpm -C packages/components build",
"test": "vitest",
"test:cover": "vitest run --coverage",
"lint:fix": "eslint . --fix"
},
"dependencies": {
},
"devDependencies": {
"@chansee97/eslint-config-vue": "^0.3.1",
"@chansee97/stylelint-config": "^0.3.1",
"@types/node": "^20.2.1",
"@vitejs/plugin-vue": "^4.1.0",
"@vitejs/plugin-vue-jsx": "^3.0.1",
"@vitest/coverage-c8": "^0.31.1",
"@vue/test-utils": "^2.3.2",
"c8": "^7.13.0",
"eslint": "^8.38.0",
"happy-dom": "^9.19.2",
"lint-staged": "^13.2.2",
"sass": "^1.62.1",
"simple-git-hooks": "^2.8.1",
"stylelint": "^15.6.2",
"typescript": "^5.0.4",
"vite": "^4.3.8",
"vitest": "^0.31.1",
"vue": "^3.3.4"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*.{js,jsx,,mjs,ts,tsx,json,,md,yml}": [
"eslint --fix"
],
"*.{css,scss,less,html}": [
"stylelint --fix"
],
"*.vue": [
"eslint --fix",
"stylelint --fix"
]
}
}