-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.25 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
{
"name": "create-mini-ci",
"type": "module",
"version": "0.0.0",
"packageManager": "[email protected]",
"description": "小程序 CI,开启小程序开发工具,生成小程序预览码,上传小程序代码",
"author": {
"name": "眼圈发黑",
"email": "[email protected]"
},
"license": "MIT",
"homepage": "https://github.com/yanquanfahei/mini-ci#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/yanquanfahei/mini-ci.git"
},
"bugs": "https://github.com/yanquanfahei/mini-ci/issues",
"keywords": [
"mini-ci",
"mp-alipay",
"mp-weixin",
"mp-toutiao"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"bin": {
"mini-ci": "./bin.js"
},
"files": [
"dist",
"bin.js",
"package.json",
"README.md"
],
"engines": {
"node": ">=16.11.0"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"postinstall": "simple-git-hooks",
"dev": "rollup -c --watch",
"build": "rimraf dist && rollup -c",
"lint": "eslint --fix",
"prepublishOnly": "pnpm build",
"release": "bumpp package.json --commit --push --tag && pnpm publish --access public"
},
"peerDependencies": {
"minidev": "^1.9.3",
"tt-ide-cli": "^0.1.21"
},
"dependencies": {
"minidev": "^1.9.3",
"tt-ide-cli": "^0.1.21"
},
"devDependencies": {
"@eye-socket/eslint-config-ts": "^0.0.2",
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.2.1",
"@rollup/plugin-typescript": "^11.1.3",
"@types/node": "^18.13.0",
"bumpp": "^9.0.0",
"cac": "^6.7.14",
"chalk": "^5.3.0",
"eslint": "^8.34.0",
"lint-staged": "^13.1.2",
"picocolors": "^1.0.0",
"rimraf": "^5.0.1",
"rollup": "^3.29.1",
"rollup-plugin-dts": "^6.0.2",
"simple-git-hooks": "^2.8.1",
"typescript": "^4.9.5",
"vitest": "^0.29.2"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged",
"commit-msg": "node scripts/verify-commit.js"
},
"lint-staged": {
"*.{ts,js,json,json5}": "eslint --fix"
}
}