-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
100 lines (100 loc) · 3.28 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
{
"name": "mpbuild-project",
"private": true,
"version": "4.2.1",
"description": "",
"main": "src/index.js",
"scripts": {
"rm": "rm -rf node_modules && find . -name \"node_modules\" -type d -prune -exec rm -rf '{}' +",
"release:patch": "npm run release -- --release-as patch",
"release:minor": "npm run release -- --release-as minor",
"release:major": "npm run release -- --release-as major",
"lint": "lint-staged",
"pretty": "prettier --write \"src/**/*.js\"",
"build:website": "cd packages/website && rm -rf .umi dist && npm run build",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"prettier-watch": "onchange '**/*.ts' -- prettier --write {{changed}}",
"eslint": "eslint . --ext .ts,.vue,.js,.tsx",
"prepare": "husky install",
"commit": "git add . && cz",
"preinstall": "npx only-allow pnpm",
"clean": "rimraf node_modules **/*/node_modules",
"cs": "changeset",
"cs:update": "node ./scripts/changeset.mjs",
"cs:version": "changeset version",
"cs:tag": "changeset tag",
"prerelease": "pnpm build",
"release": "changeset publish"
},
"packageManager": "[email protected]",
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
},
"repository": {
"type": "git",
"url": "https://github.com/ximing/mpbuild"
},
"author": "ximing",
"license": "MIT",
"files": [
"dist",
"bin",
"src"
],
"Keywords": [
"微信小程序",
"小程序",
"构建",
"工具",
"打包"
],
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"dependencies": {},
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"commitizen": "^4.3.0",
"commitlint": "^17.4.4",
"commitlint-config-cz": "^0.13.3",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"cz-customizable": "^6.9.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-flowtype": "^5.10.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^24.7.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"glob": "^7.2.3",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"prettier": "^2.8.6",
"typescript": "^4.9.5",
"@types/core-js": "^2.5.2",
"@types/jest": "^24.0.15",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^24.8.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-html-reporter": "^0.7.3",
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"tsconfig": "^7.0.0",
"typescript-eslint-parser": "^22.0.0"
},
"engines": {
"node": ">=14.0.0"
},
"standard-version": {}
}