@unity-china/codely-cli 1.0.0-beta.48 → 1.0.0-beta.50
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.
- package/bundle/gemini.js +1955 -1625
- package/bundle/gemini.js.LEGAL.txt +162 -183
- package/bundle/policies/plan.toml +113 -0
- package/bundle/policies/read-only.toml +61 -0
- package/bundle/policies/write.toml +44 -0
- package/bundle/policies/yolo.toml +9 -0
- package/bundle/web-ui/dist/public/app.css +536 -1
- package/bundle/web-ui/dist/public/app.js +44 -42
- package/package.json +8 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@unity-china/codely-cli",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.50",
|
|
4
4
|
"engines": {
|
|
5
5
|
"node": ">=20.0.0"
|
|
6
6
|
},
|
|
@@ -23,7 +23,8 @@
|
|
|
23
23
|
"build:packages": "npm run build --workspaces",
|
|
24
24
|
"build:sandbox": "node scripts/build_sandbox.js --skip-npm-install-build",
|
|
25
25
|
"bundle": "npm run generate && node esbuild.config.js && node scripts/copy_bundle_assets.js",
|
|
26
|
-
"build:single-exe": "node scripts/
|
|
26
|
+
"build:single-exe": "node scripts/build_single_exe_bun.js",
|
|
27
|
+
"measure:startup": "node scripts/measure_startup.js",
|
|
27
28
|
"test": "cross-env NODE_NO_WARNINGS=1 npm run test --workspaces --if-present",
|
|
28
29
|
"test:ci": "npm run test:ci --workspaces --if-present && npm run test:scripts",
|
|
29
30
|
"test:scripts": "vitest run --config ./scripts/tests/vitest.config.ts",
|
|
@@ -35,7 +36,7 @@
|
|
|
35
36
|
"lint": "eslint . --ext .ts,.tsx --ignore-pattern qwen-code --ignore-pattern gemini-cli --ignore-pattern opencode && eslint integration-tests",
|
|
36
37
|
"lint:fix": "eslint . --fix --ignore-pattern qwen-code --ignore-pattern gemini-cli --ignore-pattern opencode && eslint integration-tests --fix",
|
|
37
38
|
"lint:ci": "eslint . --ext .ts,.tsx --max-warnings 0 --ignore-pattern qwen-code --ignore-pattern gemini-cli --ignore-pattern opencode && eslint integration-tests --max-warnings 0",
|
|
38
|
-
"format": "prettier --experimental-cli --write .",
|
|
39
|
+
"format": "prettier --experimental-cli --ignore-path .gitignore --write .",
|
|
39
40
|
"typecheck": "npm run typecheck --workspaces --if-present",
|
|
40
41
|
"preflight": "npm run clean && npm ci && npm run format && npm run lint:ci && npm run build && npm run typecheck && npm run test:ci",
|
|
41
42
|
"prepare": "npm run bundle && husky",
|
|
@@ -61,16 +62,16 @@
|
|
|
61
62
|
"bin": {
|
|
62
63
|
"codely": "bundle/gemini.js"
|
|
63
64
|
},
|
|
65
|
+
"publishConfig": {
|
|
66
|
+
"access": "public",
|
|
67
|
+
"registry": "https://registry.npmjs.org/"
|
|
68
|
+
},
|
|
64
69
|
"files": [
|
|
65
70
|
"bundle/",
|
|
66
71
|
"README.md",
|
|
67
72
|
"README.zh-CN.md",
|
|
68
73
|
"LICENSE"
|
|
69
74
|
],
|
|
70
|
-
"publishConfig": {
|
|
71
|
-
"access": "public",
|
|
72
|
-
"registry": "https://registry.npmjs.org/"
|
|
73
|
-
},
|
|
74
75
|
"devDependencies": {
|
|
75
76
|
"@types/marked": "^5.0.2",
|
|
76
77
|
"@types/micromatch": "^4.0.9",
|