gong-code 0.1.3 → 0.1.5
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/dist/cli.js +1787 -1785
- package/package.json +5 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gong-code",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"description": "AI coding assistant in the terminal — supports MiniMax, GLM, OpenAI compatible APIs",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"author": "gongzhen",
|
|
@@ -39,12 +39,15 @@
|
|
|
39
39
|
"test": "bun test",
|
|
40
40
|
"check:unused": "knip-bun",
|
|
41
41
|
"health": "bun run scripts/health-check.ts",
|
|
42
|
-
"docs:dev": "
|
|
42
|
+
"docs:dev": "vitepress dev docs",
|
|
43
|
+
"docs:build": "vitepress build docs && bun run scripts/fix-clean-urls.ts",
|
|
44
|
+
"docs:preview": "vitepress preview docs"
|
|
43
45
|
},
|
|
44
46
|
"dependencies": {
|
|
45
47
|
"sharp": "^0.34.5"
|
|
46
48
|
},
|
|
47
49
|
"devDependencies": {
|
|
50
|
+
"vitepress": "^1.6.3",
|
|
48
51
|
"@alcalzone/ansi-tokenize": "^0.3.0",
|
|
49
52
|
"@ant/claude-for-chrome-mcp": "workspace:*",
|
|
50
53
|
"@ant/computer-use-input": "workspace:*",
|