-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.78 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
{
"name": "vue-next-slider-vertify",
"version": "1.0.5",
"main": "lib/index.es.js",
"module": "lib/index.es.js",
"types": "lib/index.d.ts",
"author": "lvzl <627417163@qq.com>",
"repository": {
"type": "github",
"url": "https://github.com/lv-z-l/vue-next-slider-vertify"
},
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"build:dev": "vue-tsc --noEmit && vite build --mode development",
"build:pro": "vue-tsc --noEmit && vite build --mode production",
"preview": "vite preview",
"lint": "eslint src --fix --ext .ts,.tsx,.vue,.js,.jsx",
"prettier": "prettier --write ./src",
"prepare": "husky install"
},
"files": [
"/lib",
"README.md"
],
"keywords": [
"vue3滑块验证",
"vue3拖动滑块验证",
"滑块验证"
],
"dependencies": {},
"peerDependencies": {
"vue": "^3.2.25"
},
"devDependencies": {
"@types/node": "^17.0.42",
"@types/nprogress": "^0.2.0",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"@vitejs/plugin-vue": "^2.3.3",
"@vitejs/plugin-vue-jsx": "^1.3.10",
"dart-sass": "^1.25.0",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^9.1.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.1",
"mrm": "^4.0.0",
"prettier": "^2.6.2",
"sass": "^1.52.3",
"typescript": "^4.5.4",
"vite": "^2.9.9",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-dts": "^1.2.0",
"vue": "^3.2.25",
"vue-tsc": "^0.34.7"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"yarn lint",
"yarn prettier",
"git add"
]
}
}