command-code 0.41.2 → 0.41.4

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/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "command-code",
3
- "version": "0.41.2",
3
+ "version": "0.41.4",
4
4
  "description": "Command Code, coding agent that continuously learns your coding taste",
5
5
  "type": "module",
6
6
  "main": "dist/index.mjs",
7
7
  "bin": {
8
- "cmd": "dist/index.mjs",
9
- "cmdc": "dist/index.mjs",
10
- "command-code": "dist/index.mjs",
11
- "commandcode": "dist/index.mjs"
8
+ "cmd": "bin/run.mjs",
9
+ "cmdc": "bin/run.mjs",
10
+ "command-code": "bin/run.mjs",
11
+ "commandcode": "bin/run.mjs"
12
12
  },
13
13
  "keywords": [
14
14
  "command",
@@ -23,6 +23,7 @@
23
23
  },
24
24
  "license": "UNLICENSED",
25
25
  "files": [
26
+ "bin",
26
27
  "dist",
27
28
  "vsix",
28
29
  "skills"
@@ -113,10 +114,10 @@
113
114
  "build:bun": "bun run build.bun.js",
114
115
  "build:bun:exe": "bun build ./src/index.ts --compile --outfile dist/command-code",
115
116
  "dev": "tsup --watch src",
116
- "link:local": "ln -sf $(pwd)/dist/index.mjs /usr/local/bin/dmd && chmod +x /usr/local/bin/dmd",
117
+ "link:local": "ln -sf $(pwd)/bin/run.mjs /usr/local/bin/dmd && chmod +x /usr/local/bin/dmd",
117
118
  "unlink:local": "rm -f /usr/local/bin/dmd",
118
119
  "typecheck": "tsc --noEmit",
119
- "start": "node dist/index.mjs",
120
+ "start": "node bin/run.mjs",
120
121
  "test": "bash scripts/run-tests-all.sh",
121
122
  "test:integration": "vitest run --config tests/integration/vitest.config.ts",
122
123
  "test:integration:verbose": "VERBOSE=true KEEP_OUTPUT=true vitest run --config tests/integration/vitest.config.ts",
Binary file