-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.61 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
{
"name": "soft-ui",
"version": "0.0.1",
"description": "A UI library, build with Vue.js",
"main": "index.js",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "npm run lint:code && npm run lint:type",
"lint:code": "eslint --fix \"{src,build,scripts,lib}/**/*.{ts,tsx,js,vue,md}\"",
"format:code": "prettier --write \"(src|lib)/**/*.(vue|js|ts|tsx)\"",
"format:md": "prettier --write --parser markdown --prose-wrap never \"(src|lib)/**/*.md\"",
"postinstall": "git config core.hooksPath hooks",
"prepare": "husky install"
},
"dependencies": {
"async-validator": "^4.0.2",
"less": "^4.1.1",
"vue": "^3.2.4",
"vue-types": "^4.0.3"
},
"devDependencies": {
"@types/node": "^16.7.1",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@vitejs/plugin-vue": "^1.4.0",
"@vitejs/plugin-vue-jsx": "^1.1.7",
"@vue/compiler-sfc": "^3.0.4",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-standard": "^6.1.0",
"@vue/eslint-config-typescript": "^7.0.0",
"autoprefixer": "^10.3.2",
"babel-eslint": "^10.1.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-config-standard-with-typescript": "^20.0.0",
"eslint-plugin-import": "^2.24.1",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-markdown": "^2.2.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-vue": "^7.16.0",
"husky": "^7.0.1",
"lint-staged": "^11.1.2",
"postcss": "^8.3.6",
"prettier": "^2.3.2",
"stylelint-config-prettier": "^8.0.2",
"typescript": "^4.3.5",
"vite": "^2.5.0",
"vite-plugin-babel-import": "^2.0.5"
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix"
],
"*.ts": [
"prettier --write",
"eslint --fix"
],
"*.tsx": [
"prettier --write",
"eslint --fix"
],
"*.vue": [
"prettier --parser=vue --write",
"eslint --fix"
],
"*.css": [
"prettier --write"
],
"*.md": [
"prettier --write --parser markdown --prose-wrap never",
"eslint --fix"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/soloPhone/soft-ui.git"
},
"keywords": [
"Vue",
"UI"
],
"author": "ivan0525",
"license": "MIT",
"bugs": {
"url": "https://github.com/soloPhone/soft-ui/issues"
},
"homepage": "https://github.com/soloPhone/soft-ui#readme",
"browserslist": [
"> 1%",
"last 2 versions"
]
}