command-code 0.10.10 → 0.10.12
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/README.md +24 -1
- package/dist/index.mjs +3 -2
- package/package.json +17 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "command-code",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.12",
|
|
4
4
|
"description": "Command Code, coding agent that continuously learns your coding taste",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.mjs",
|
|
@@ -30,6 +30,12 @@
|
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"@anthropic-ai/sdk": "^0.60.0",
|
|
33
|
+
"@opentelemetry/api": "^1.9.0",
|
|
34
|
+
"@opentelemetry/sdk-node": "^0.200.0",
|
|
35
|
+
"@opentelemetry/sdk-trace-node": "^2.0.0",
|
|
36
|
+
"@opentelemetry/exporter-trace-otlp-http": "^0.200.0",
|
|
37
|
+
"@opentelemetry/resources": "^2.0.0",
|
|
38
|
+
"@opentelemetry/semantic-conventions": "^1.30.0",
|
|
33
39
|
"@clack/core": "^0.5.0",
|
|
34
40
|
"@clack/prompts": "^0.11.0",
|
|
35
41
|
"@crosscopy/clipboard": "^0.2.8",
|
|
@@ -75,6 +81,7 @@
|
|
|
75
81
|
"@types/react": "^19.0.3",
|
|
76
82
|
"@types/semver": "^7.7.1",
|
|
77
83
|
"@types/shell-quote": "^1.7.5",
|
|
84
|
+
"execa": "^9.6.1",
|
|
78
85
|
"ink-testing-library": "^4.0.0",
|
|
79
86
|
"javascript-obfuscator": "^4.1.1",
|
|
80
87
|
"pkg": "^5.8.1",
|
|
@@ -110,9 +117,16 @@
|
|
|
110
117
|
"test:taste:debug": "DEBUG=true vitest run tests/taste 2>&1 | tee tests/taste/test-output-debug.log",
|
|
111
118
|
"test:integration": "vitest run --config tests/integration/vitest.config.ts",
|
|
112
119
|
"test:integration:verbose": "VERBOSE=true KEEP_OUTPUT=true vitest run --config tests/integration/vitest.config.ts",
|
|
113
|
-
"test:
|
|
120
|
+
"test:integration:debug": "DEBUG_HANGING=true vitest run --config tests/integration/vitest.config.ts",
|
|
121
|
+
"test:cleanup": "bash scripts/cleanup-test-processes.sh",
|
|
122
|
+
"test:cleanup:dry": "bash scripts/cleanup-test-processes.sh --dry",
|
|
123
|
+
"test:all": "pnpm test && pnpm test:integration && pnpm test:non-interactive",
|
|
114
124
|
"publish:prod": "pnpm run build:obfuscated && npm publish --access public",
|
|
115
125
|
"test:watch": "vitest",
|
|
116
|
-
"test:coverage": "vitest run --coverage"
|
|
126
|
+
"test:coverage": "vitest run --coverage",
|
|
127
|
+
"test:non-interactive": "vitest run --config tests/non-interactive/vitest.config.ts",
|
|
128
|
+
"test:non-interactive:verbose": "KEEP_OUTPUT=true vitest run --config tests/non-interactive/vitest.config.ts",
|
|
129
|
+
"test:non-interactive:watch": "vitest --config tests/non-interactive/vitest.config.ts",
|
|
130
|
+
"test:e2e": "pnpm test:integration && pnpm test:non-interactive"
|
|
117
131
|
}
|
|
118
132
|
}
|