-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.6 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "sp-ui-store",
"private": false,
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "pnpm -C play dev",
"build": "gulp -f build/gulpfile.ts",
"doc:dev": "pnpm -C docs dev",
"lint": "eslint {packages/**/*,play/**/*}.{js,ts,jsx,tsx,vue}",
"lint:fix": "eslint {packages/**/*,play/**/*}.{js,ts,jsx,tsx,vue} --fix",
"lint-staged": "lint-staged",
"format": "prettier --write .",
"release": "release-it",
"commit": "git add . && git-cz",
"publish": "gulp -f scripts/publish.ts",
"prepare": "husky install"
},
"keywords": [
"vue3组件库"
],
"author": "sparkle",
"license": "ISC",
"dependencies": {
"@sp-ui/components": "workspace:*",
"@sp-ui/theme-chalk": "workspace:*",
"@sp-ui/utils": "workspace:*",
"typescript": "^5.5.4",
"vue": "^3.4.35"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/6iKUN6/vue-ui-store"
},
"devDependencies": {
"@babel/eslint-parser": "^7.25.1",
"@commitlint/cli": "^19.4.1",
"@commitlint/config-conventional": "^19.4.1",
"@types/gulp": "^4.0.17",
"@types/gulp-autoprefixer": "^0.0.37",
"@types/gulp-clean-css": "^4.3.4",
"@types/gulp-sass": "^5.0.4",
"@types/mockjs": "^1.0.10",
"@types/node": "^22.5.1",
"@types/sass": "^1.45.0",
"@typescript-eslint/eslint-plugin": "^8.0.1",
"@typescript-eslint/parser": "^8.0.1",
"@vitejs/plugin-vue-jsx": "^4.0.1",
"@vue/eslint-config-typescript": "^13.0.0",
"async-validator": "^4.2.5",
"commitizen": "^4.3.0",
"cz-git": "^1.9.4",
"dayjs": "^1.11.13",
"eslint": "9.8.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-vue": "^9.27.0",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^8.0.0",
"gulp-clean-css": "^4.3.0",
"gulp-sass": "^5.0.0",
"gulp-typescript": "6.0.0-alpha.1",
"husky": "^9.1.5",
"lint-staged": "^15.2.10",
"mockjs": "^1.1.0",
"prettier": "^3.3.3",
"release-it": "^17.6.0",
"sass": "^1.43.2",
"sucrase": "^3.35.0",
"typescript-eslint": "^8.0.1",
"unplugin-vue-define-options": "^1.4.9",
"vite-plugin-dts": "^4.1.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"pnpm lint:fix",
"pnpm format"
]
},
"engines": {
"node": ">=18",
"pnpm": "9.4.0"
},
"engineStrict": true
}