command-code 0.10.19 → 0.11.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.
- package/dist/index.mjs +3 -3
- package/package.json +9 -7
- package/vsix/commandcode-vscode.vsix +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "command-code",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.11.0",
|
|
4
4
|
"description": "Command Code, coding agent that continuously learns your coding taste",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.mjs",
|
|
@@ -31,15 +31,15 @@
|
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@anthropic-ai/sdk": "^0.60.0",
|
|
34
|
+
"@clack/core": "^1.0.1",
|
|
35
|
+
"@clack/prompts": "^1.0.1",
|
|
36
|
+
"@crosscopy/clipboard": "^0.2.8",
|
|
34
37
|
"@opentelemetry/api": "^1.9.0",
|
|
35
|
-
"@opentelemetry/sdk-node": "^0.200.0",
|
|
36
|
-
"@opentelemetry/sdk-trace-node": "^2.0.0",
|
|
37
38
|
"@opentelemetry/exporter-trace-otlp-http": "^0.200.0",
|
|
38
39
|
"@opentelemetry/resources": "^2.0.0",
|
|
40
|
+
"@opentelemetry/sdk-node": "^0.200.0",
|
|
41
|
+
"@opentelemetry/sdk-trace-node": "^2.0.0",
|
|
39
42
|
"@opentelemetry/semantic-conventions": "^1.30.0",
|
|
40
|
-
"@clack/core": "^0.5.0",
|
|
41
|
-
"@clack/prompts": "^0.11.0",
|
|
42
|
-
"@crosscopy/clipboard": "^0.2.8",
|
|
43
43
|
"@sindresorhus/slugify": "^2.2.1",
|
|
44
44
|
"@types/uuid": "^10.0.0",
|
|
45
45
|
"chalk": "^5.5.0",
|
|
@@ -47,6 +47,7 @@
|
|
|
47
47
|
"dedent": "^1.6.0",
|
|
48
48
|
"diff": "^8.0.2",
|
|
49
49
|
"dotenv": "^17.2.1",
|
|
50
|
+
"fast-wrap-ansi": "^0.2.0",
|
|
50
51
|
"figures": "^6.1.0",
|
|
51
52
|
"glob": "^11.0.3",
|
|
52
53
|
"gray-matter": "^4.0.3",
|
|
@@ -73,6 +74,7 @@
|
|
|
73
74
|
"string-width": "^8.1.0",
|
|
74
75
|
"strip-ansi": "^7.1.0",
|
|
75
76
|
"strip-json-comments": "^5.0.3",
|
|
77
|
+
"terminal-link": "^5.0.0",
|
|
76
78
|
"uuid": "^11.1.0",
|
|
77
79
|
"zod": "^4.0.17"
|
|
78
80
|
},
|
|
@@ -108,7 +110,7 @@
|
|
|
108
110
|
"build:bun": "bun run build.bun.js",
|
|
109
111
|
"build:bun:exe": "bun build ./src/index.ts --compile --outfile dist/command-code",
|
|
110
112
|
"build:pkg": "pnpm build && pkg dist/index.cjs -t node18-macos-x64,node18-linux-x64,node18-win-x64 --out-path dist/binaries",
|
|
111
|
-
"dev": "tsup --watch",
|
|
113
|
+
"dev": "tsup --watch src",
|
|
112
114
|
"link:local": "ln -sf $(pwd)/dist/index.mjs /usr/local/bin/dmd && chmod +x /usr/local/bin/dmd",
|
|
113
115
|
"unlink:local": "rm -f /usr/local/bin/dmd",
|
|
114
116
|
"typecheck": "tsc --noEmit",
|
|
Binary file
|