@agile-team/robot-cli 2.1.0 → 2.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. package/CHANGELOG.md +18 -1
  2. package/README.md +27 -27
  3. package/dist/index.js +290 -247
  4. package/package.json +76 -77
package/package.json CHANGED
@@ -1,77 +1,76 @@
1
- {
2
- "name": "@agile-team/robot-cli",
3
- "version": "2.1.0",
4
- "description": "🤖 现代化项目脚手架工具,支持多技术栈快速创建项目 - 优先 bun,兼容 npm/pnpm/yarn",
5
- "type": "module",
6
- "bin": {
7
- "robot": "bin/robot.js"
8
- },
9
- "scripts": {
10
- "build": "tsup",
11
- "dev": "tsup --watch",
12
- "test": "vitest run",
13
- "test:watch": "vitest",
14
- "lint": "oxlint src/ tests/",
15
- "lint:fix": "oxlint --fix src/ tests/",
16
- "typecheck": "tsc --noEmit",
17
- "prepublishOnly": "bun run build && bun run test",
18
- "release:patch": "bun version patch && bunx npm publish --access public",
19
- "release:minor": "bun version minor && bunx npm publish --access public",
20
- "release:major": "bun version major && bunx npm publish --access public"
21
- },
22
- "dependencies": {
23
- "boxen": "^7.1.0",
24
- "chalk": "^5.3.0",
25
- "commander": "^11.0.0",
26
- "extract-zip": "^2.0.1",
27
- "fs-extra": "^11.1.0",
28
- "inquirer": "^9.2.0",
29
- "ora": "^7.0.0"
30
- },
31
- "devDependencies": {
32
- "@types/fs-extra": "^11.0.4",
33
- "@types/inquirer": "^9.0.9",
34
- "@types/node": "^22.0.0",
35
- "oxlint": "^0.16.0",
36
- "tsup": "^8.4.0",
37
- "typescript": "^5.7.0",
38
- "vitest": "^3.0.0"
39
- },
40
- "files": [
41
- "bin",
42
- "dist",
43
- "README.md",
44
- "CHANGELOG.md"
45
- ],
46
- "keywords": [
47
- "cli",
48
- "scaffold",
49
- "template",
50
- "vue",
51
- "react",
52
- "node",
53
- "uni-app",
54
- "electron",
55
- "project-generator",
56
- "boilerplate",
57
- "bun-first",
58
- "package-manager-smart",
59
- "cheny"
60
- ],
61
- "engines": {
62
- "node": ">=20.0.0"
63
- },
64
- "homepage": "https://github.com/ChenyCHENYU/robot-cli#readme",
65
- "repository": {
66
- "type": "git",
67
- "url": "git+https://github.com/ChenyCHENYU/robot-cli.git"
68
- },
69
- "bugs": {
70
- "url": "https://github.com/ChenyCHENYU/robot-cli/issues"
71
- },
72
- "author": "CHENY <ycyplus@gmail.com>",
73
- "license": "MIT",
74
- "publishConfig": {
75
- "access": "public"
76
- }
77
- }
1
+ {
2
+ "name": "@agile-team/robot-cli",
3
+ "version": "2.3.0",
4
+ "description": "现代化项目脚手架工具,支持多技术栈快速创建项目 - 优先 bun,兼容 npm/pnpm/yarn",
5
+ "type": "module",
6
+ "bin": {
7
+ "robot": "bin/robot.js"
8
+ },
9
+ "scripts": {
10
+ "build": "tsup",
11
+ "dev": "tsup --watch",
12
+ "test": "vitest run",
13
+ "test:watch": "vitest",
14
+ "lint": "oxlint src/ tests/",
15
+ "lint:fix": "oxlint --fix src/ tests/",
16
+ "typecheck": "tsc --noEmit",
17
+ "prepublishOnly": "bun run build && bun run test",
18
+ "release:patch": "bun version patch && bunx npm publish --access public",
19
+ "release:minor": "bun version minor && bunx npm publish --access public",
20
+ "release:major": "bun version major && bunx npm publish --access public"
21
+ },
22
+ "dependencies": {
23
+ "chalk": "^5.3.0",
24
+ "commander": "^11.0.0",
25
+ "extract-zip": "^2.0.1",
26
+ "fs-extra": "^11.1.0",
27
+ "inquirer": "^9.2.0",
28
+ "ora": "^7.0.0"
29
+ },
30
+ "devDependencies": {
31
+ "@types/fs-extra": "^11.0.4",
32
+ "@types/inquirer": "^9.0.9",
33
+ "@types/node": "^22.0.0",
34
+ "oxlint": "^0.16.0",
35
+ "tsup": "^8.4.0",
36
+ "typescript": "^5.7.0",
37
+ "vitest": "^3.0.0"
38
+ },
39
+ "files": [
40
+ "bin",
41
+ "dist",
42
+ "README.md",
43
+ "CHANGELOG.md"
44
+ ],
45
+ "keywords": [
46
+ "cli",
47
+ "scaffold",
48
+ "template",
49
+ "vue",
50
+ "react",
51
+ "node",
52
+ "uni-app",
53
+ "electron",
54
+ "project-generator",
55
+ "boilerplate",
56
+ "bun-first",
57
+ "package-manager-smart",
58
+ "cheny"
59
+ ],
60
+ "engines": {
61
+ "node": ">=20.0.0"
62
+ },
63
+ "homepage": "https://github.com/ChenyCHENYU/robot-cli#readme",
64
+ "repository": {
65
+ "type": "git",
66
+ "url": "git+https://github.com/ChenyCHENYU/robot-cli.git"
67
+ },
68
+ "bugs": {
69
+ "url": "https://github.com/ChenyCHENYU/robot-cli/issues"
70
+ },
71
+ "author": "CHENY <ycyplus@gmail.com>",
72
+ "license": "MIT",
73
+ "publishConfig": {
74
+ "access": "public"
75
+ }
76
+ }