-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
101 lines (101 loc) · 2.97 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
99
100
101
{
"name": "vue-superman",
"version": "0.1.10",
"private": true,
"packageManager": "[email protected]",
"description": "vue useful lib collection, use vue like a superman",
"author": "yangjinming",
"scripts": {
"bootstrap": "pnpm i &&pnpm build:all",
"build": "esno ./scripts/build.ts",
"build:all": "turbo run build",
"clean": "rimraf **/node_modules/**",
"commit": "git add . &&git-cz",
"lint": "redrun lint:es lint:css lint:dir",
"lint:change": "lint-staged",
"lint:css": "stylelint --aei --fix ./**/*.{vue,css,sass,scss,less,html} --cache --cache-location node_modules/.cache/stylelint/",
"lint:dir": "ls-lint",
"lint:es": "eslint --fix . --ext .jsx,.js,.vue,.ts,.tsx,.json",
"preinstall": "npx only-allow pnpm",
"prepare": "husky install",
"release": "esno ./scripts/release.ts",
"test": "pnpm run -r test"
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@ls-lint/ls-lint": "^1.11.0",
"@types/eslint": "^8.4.1",
"@types/prettier": "^2.6.0",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"@vue/eslint-config-typescript": "^10.0.0",
"bumpp": "^7.1.1",
"chalk": "4.1.2",
"commitizen": "^4.2.4",
"conventional-changelog-cli": "^2.2.2",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-html": "^6.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.1.4",
"eslint-plugin-markdown": "^2.2.1",
"eslint-plugin-mdx": "^1.17.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-vue": "^8.6.0",
"esno": "^0.14.1",
"globby": "11.1.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.8",
"ora": "5.4.1",
"postcss": "^8.4.12",
"postcss-html": "^1.4.1",
"postcss-less": "^6.0.0",
"prettier": "^2.6.2",
"redrun": "^10.0.1",
"rimraf": "^3.0.2",
"stylelint": "^14.7.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recess-order": "^3.0.0",
"stylelint-config-recommended": "^7.0.0",
"stylelint-config-recommended-vue": "^1.4.0",
"stylelint-config-standard": "^25.0.0",
"stylelint-less": "^1.0.5",
"stylelint-order": "^5.0.0",
"stylelint-prettier": "^2.0.0",
"turbo": "^1.2.8",
"typescript": "4.6.3"
},
"engines": {
"node": ">=14",
"pnpm": ">=6"
},
"pnpm": {
"overrides": {
"vue-demi": "0.12.5"
},
"packageExtensions": {
"stylelint-config-recommended-vue": {
"dependencies": {
"postcss-html": "^1.4.1"
}
},
"vue-template-compiler": {
"devDependencies": {
"vue": "^2.6.14"
},
"peerDependencies": {
"vue": "^2.6.14"
}
}
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}