command-code 0.10.13 → 0.10.15
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 +0 -21
- package/dist/index.mjs +3 -3
- package/package.json +4 -3
- 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.10.
|
|
3
|
+
"version": "0.10.15",
|
|
4
4
|
"description": "Command Code, coding agent that continuously learns your coding taste",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.mjs",
|
|
@@ -22,7 +22,8 @@
|
|
|
22
22
|
},
|
|
23
23
|
"license": "UNLICENSED",
|
|
24
24
|
"files": [
|
|
25
|
-
"dist"
|
|
25
|
+
"dist",
|
|
26
|
+
"vsix"
|
|
26
27
|
],
|
|
27
28
|
"private": false,
|
|
28
29
|
"publishConfig": {
|
|
@@ -102,7 +103,7 @@
|
|
|
102
103
|
},
|
|
103
104
|
"scripts": {
|
|
104
105
|
"build": "tsup",
|
|
105
|
-
"build:obfuscated": "tsup --config tsup.config.obfuscated.ts",
|
|
106
|
+
"build:obfuscated": "bash ../../scripts/build-ext.sh && tsup --config tsup.config.obfuscated.ts",
|
|
106
107
|
"build:balanced": "tsup --config tsup.config.balanced.ts",
|
|
107
108
|
"build:bun": "bun run build.bun.js",
|
|
108
109
|
"build:bun:exe": "bun build ./src/index.ts --compile --outfile dist/command-code",
|
|
Binary file
|