@chatcode/chatcode-cli-test 1.0.40 → 1.0.42
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/bin/cli.js +16 -5
- package/bin/generation-supervisor.js +131 -0
- package/dist/cli.js +1857 -1841
- package/package.json +9 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chatcode/chatcode-cli-test",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.42",
|
|
4
4
|
"description": "ChatCode CLI command-line coding assistant.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"type": "module",
|
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
},
|
|
19
19
|
"chatcodeNativePackageFormat": 1,
|
|
20
20
|
"scripts": {
|
|
21
|
-
"dev": "bun run
|
|
22
|
-
"start": "bun run
|
|
23
|
-
"version": "bun run
|
|
21
|
+
"dev": "bun run ./scripts/dev-supervisor.mjs",
|
|
22
|
+
"start": "bun run ./scripts/dev-supervisor.mjs",
|
|
23
|
+
"version": "bun run ./scripts/dev-supervisor.mjs --version",
|
|
24
24
|
"test": "bun test scripts/tests",
|
|
25
25
|
"scan:public-surface": "bun run scripts/public-surface-scan.mjs --fail-on-match",
|
|
26
26
|
"verify:public-surface": "bun run scripts/verify-public-surface-release.mjs",
|
|
@@ -117,10 +117,10 @@
|
|
|
117
117
|
"zod": "4.3.6"
|
|
118
118
|
},
|
|
119
119
|
"optionalDependencies": {
|
|
120
|
-
"@chatcode/chatcode-cli-test-darwin-arm64": "1.0.
|
|
121
|
-
"@chatcode/chatcode-cli-test-darwin-x64": "1.0.
|
|
122
|
-
"@chatcode/chatcode-cli-test-linux-x64": "1.0.
|
|
123
|
-
"@chatcode/chatcode-cli-test-linux-arm64": "1.0.
|
|
124
|
-
"@chatcode/chatcode-cli-test-win32-x64": "1.0.
|
|
120
|
+
"@chatcode/chatcode-cli-test-darwin-arm64": "1.0.42",
|
|
121
|
+
"@chatcode/chatcode-cli-test-darwin-x64": "1.0.42",
|
|
122
|
+
"@chatcode/chatcode-cli-test-linux-x64": "1.0.42",
|
|
123
|
+
"@chatcode/chatcode-cli-test-linux-arm64": "1.0.42",
|
|
124
|
+
"@chatcode/chatcode-cli-test-win32-x64": "1.0.42"
|
|
125
125
|
}
|
|
126
126
|
}
|