@unity-china/codely-cli 1.0.0-rc.7 → 1.0.0-rc.9

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 (2) hide show
  1. package/bundle/gemini.js +1356 -1332
  2. package/package.json +10 -8
package/package.json CHANGED
@@ -1,10 +1,6 @@
1
1
  {
2
2
  "name": "@unity-china/codely-cli",
3
- "version": "1.0.0-rc.7",
4
- "publishConfig": {
5
- "access": "public",
6
- "registry": "https://registry.npmjs.org/"
7
- },
3
+ "version": "1.0.0-rc.9",
8
4
  "engines": {
9
5
  "node": ">=20.0.0"
10
6
  },
@@ -40,9 +36,9 @@
40
36
  "test:integration:sandbox:none": "cross-env GEMINI_SANDBOX=false vitest run --root ./integration-tests",
41
37
  "test:integration:sandbox:docker": "npm run build:sandbox && cross-env GEMINI_SANDBOX=docker vitest run --root ./integration-tests",
42
38
  "test:integration:sandbox:podman": "cross-env GEMINI_SANDBOX=podman vitest run --root ./integration-tests",
43
- "lint": "eslint . --ext .ts,.tsx --ignore-pattern qwen-code --ignore-pattern gemini-cli --ignore-pattern opencode --ignore-pattern claude-code && eslint integration-tests",
44
- "lint:fix": "eslint . --fix --ignore-pattern qwen-code --ignore-pattern gemini-cli --ignore-pattern opencode --ignore-pattern claude-code && eslint integration-tests --fix",
45
- "lint:ci": "eslint . --ext .ts,.tsx --max-warnings 0 --ignore-pattern qwen-code --ignore-pattern gemini-cli --ignore-pattern opencode --ignore-pattern claude-code && eslint integration-tests --max-warnings 0",
39
+ "lint": "eslint . --ext .ts,.tsx --ignore-pattern qwen-code --ignore-pattern gemini-cli --ignore-pattern opencode --ignore-pattern claude-code && eslint integration-tests --ext .ts",
40
+ "lint:fix": "eslint . --ext .ts,.tsx --fix --ignore-pattern qwen-code --ignore-pattern gemini-cli --ignore-pattern opencode --ignore-pattern claude-code && eslint integration-tests --ext .ts --fix",
41
+ "lint:ci": "eslint . --ext .ts,.tsx --max-warnings 0 --ignore-pattern qwen-code --ignore-pattern gemini-cli --ignore-pattern opencode --ignore-pattern claude-code && eslint integration-tests --ext .ts --max-warnings 0",
46
42
  "format": "prettier --experimental-cli --ignore-path .gitignore --write .",
47
43
  "typecheck": "npm run typecheck --workspaces --if-present",
48
44
  "preflight": "npm run clean && npm ci && npm run format && npm run lint:ci && npm run build && npm run typecheck && npm run test:ci",
@@ -51,6 +47,8 @@
51
47
  "release:version": "node scripts/version.js",
52
48
  "telemetry": "node scripts/telemetry.js",
53
49
  "verify-external-platforms": "node scripts/verify-external-platforms-disabled.js",
50
+ "export:system-prompt": "node scripts/export-system-prompt.mjs",
51
+ "export:system-prompt:unity": "node scripts/export-system-prompt.mjs --with-unity",
54
52
  "clean": "node scripts/clean.js",
55
53
  "install-cli": "npm install -g ./packages/cli",
56
54
  "pack": "node scripts/ensure-dist.js && npm run build && npm pack --pack-destination ./dist",
@@ -75,6 +73,10 @@
75
73
  "README.zh-CN.md",
76
74
  "LICENSE"
77
75
  ],
76
+ "publishConfig": {
77
+ "access": "public",
78
+ "registry": "https://registry.npmjs.org/"
79
+ },
78
80
  "devDependencies": {
79
81
  "@types/marked": "^5.0.2",
80
82
  "@types/micromatch": "^4.0.9",