-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 2.02 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
{
"name": "tiny-app-cli",
"type": "module",
"version": "0.3.1",
"packageManager": "[email protected]",
"description": "自动提审与发布微信、支付宝小程序, 更好的实现小程序的CI/CD",
"author": "penghongkun <https://github.com/phk422>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/phk422/tiny-app-cli"
},
"keywords": [
"alipay",
"miniprogram",
"wechat",
"uniapp",
"tiny-app",
"CI/CD",
"小程序自动提审",
"自动发布",
"自动上传"
],
"main": "index.js",
"bin": {
"tiny-app-cli": "index.js"
},
"files": [
"cache",
"dist"
],
"scripts": {
"start": "cross-env NODE_ENV=development node ./index.js",
"start:pro": "pnpm build && node ./index.js",
"dev": "unbuild --stub",
"build": "unbuild",
"publish:ci": "npm publish --access public",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prerelease": "cross-env VERSION_ARG=prerelease pnpm release",
"patch": "cross-env VERSION_ARG=patch pnpm release",
"minor": "cross-env VERSION_ARG=minor pnpm release",
"major": "cross-env VERSION_ARG=major pnpm release",
"release": "esno scripts/release.ts"
},
"dependencies": {
"commander": "^11.1.0",
"jsqr": "^1.4.0",
"kolorist": "^1.8.0",
"ora": "^6.3.1",
"prompts": "^2.4.2",
"puppeteer": "^19.6.1",
"qrcode-terminal": "^0.12.0",
"upng-js": "^2.1.0"
},
"devDependencies": {
"@antfu/eslint-config": "^2.4.6",
"@jsdevtools/version-bump-prompt": "^6.1.0",
"@types/minimist": "^1.2.5",
"@types/prompts": "^2.4.9",
"@types/qrcode-terminal": "^0.12.2",
"@types/upng-js": "^2.1.5",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"esno": "^4.0.0",
"lint-staged": "^15.2.0",
"simple-git-hooks": "^2.9.0",
"typescript": "^5.3.3",
"unbuild": "^2.0.0"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,md}": [
"eslint --cache --fix"
]
}
}