-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (78 loc) · 2.13 KB
/
package.json
File metadata and controls
79 lines (78 loc) · 2.13 KB
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": "mp-nexus-cli",
"version": "1.0.0",
"description": "A unified CLI tool for one-click preview/deployment of mini-program projects. Aggregates framework builds (Taro/uni-app) with miniprogram-ci upload/preview, providing standardized workflows and extensible adapter architecture.",
"keywords": [
"miniprogram",
"wechat",
"taro",
"uni-app",
"cli",
"deployment",
"preview",
"miniprogram-ci"
],
"homepage": "https://github.com/thornboo/mp-nexus-cli#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/thornboo/mp-nexus-cli.git"
},
"bugs": {
"url": "https://github.com/thornboo/mp-nexus-cli/issues"
},
"author": {
"name": "thornboo",
"email": "zhaozhuang1210@gmail.com",
"url": "https://github.com/thornboo"
},
"license": "MIT",
"private": false,
"bin": {
"nexus": "dist/nexus.js"
},
"type": "commonjs",
"main": "dist/nexus.js",
"files": [
"dist",
"README.md",
"README_CN.md",
"LICENSE"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "tsup --config tsup.config.ts",
"dev": "node dist/nexus.js --help || true",
"prepare": "npm run build",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --ci --coverage --watchAll=false",
"publish:npm": "node scripts/publish-npm.js",
"publish:npm:dry-run": "node scripts/publish-npm.js --dry-run",
"publish:github": "npm publish --registry=https://npm.pkg.github.com",
"publish:all": "node scripts/publish.js",
"version:patch": "npm version patch",
"version:minor": "npm version minor",
"version:major": "npm version major"
},
"dependencies": {
"@types/inquirer": "^9.0.9",
"commander": "^12.1.0",
"dotenv": "^16.4.5",
"execa": "^9.6.0",
"inquirer": "^12.9.4",
"miniprogram-ci": "^2.1.14",
"qrcode-terminal": "^0.12.0",
"simple-git": "^3.28.0"
},
"devDependencies": {
"@jest/globals": "^30.1.1",
"@types/jest": "^30.0.0",
"jest": "^30.1.1",
"ts-jest": "^29.4.1",
"tsup": "^8.1.0",
"typescript": "^5.5.4"
}
}