-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
74 lines (74 loc) · 2.06 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
{
"name": "vingogo",
"version": "0.1.0",
"private": true,
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/vingogo/vin-ui.git"
},
"scripts": {
"lint": "eslint --ext .ts,.js,.vue --fix ./src",
"stylelint": "stylelint --fix \"src/**/*.scss\"",
"format": "prettier --write .",
"prepare": "husky install",
"dev": "pnpm -r --filter=example run dev",
"dev:docs": "pnpm -r --filter=docs run dev",
"build": "pnpm -f --filter=example run build",
"build:lib": "pnpm run --dir packages/uni-ui build:lib",
"build:uni": "pnpm run --dir packages/uni-ui build:uni",
"ci:version": "changeset version",
"ci:publish": "pnpm run build:lib && changeset publish"
},
"lint-staged": {
"*.md": "prettier --write",
"*.{js,json}": [
"eslint",
"prettier --write"
],
"*.ts?(x)": [
"eslint",
"prettier --parser=typescript --write"
],
"**/*.{scss,css}": [
"stylelint --fix",
"prettier --parser css --write"
]
},
"dependencies": {
"vue": "^3.2.33"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.1",
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@dcloudio/types": "^3.2.11",
"@types/node": "^17.0.31",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"@vingogo/eslint-config-vue": "^0.2.0",
"@vingogo/prettier-config": "^0.1.1",
"@vingogo/static-upload": "^0.3.0",
"@vingogo/stylelint-config": "^0.1.0",
"@vue/tsconfig": "^0.4.0",
"c8": "^7.11.2",
"chokidar": "^3.5.3",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"eslint": "^8.16.0",
"husky": "^8.0.0",
"postcss": "^8.4.6",
"postcss-preset-env": "^7.2.3",
"prettier": "^2.6.2",
"sass": "^1.52.1",
"stylelint": "^13.13.1",
"typescript": "^5.1.6",
"vite": "^4.0.0",
"vite-plugin-eslint": "^1.6.0"
}
}