@hyperxenonzephyr/kv-code 0.1.0 → 0.1.2
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 +11 -11
- package/scripts/postinstall.js +2 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
{
|
|
1
|
+
{
|
|
2
2
|
"name": "@hyperxenonzephyr/kv-code",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "KV Code is a local-first coding agent for terminal workflows.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"homepage": "https://github.com/HyperXenonZephyr/Kv-code#readme",
|
|
@@ -22,10 +22,10 @@
|
|
|
22
22
|
"build": "python scripts/build_npm_package.py --package kv-code --version $npm_package_version --vendor-src ./vendor --pack-output ./dist/kv-code.tgz",
|
|
23
23
|
"prepublishOnly": "npm run build"
|
|
24
24
|
},
|
|
25
|
-
"type": "module",
|
|
26
|
-
"engines": {
|
|
27
|
-
"node": ">=16"
|
|
28
|
-
},
|
|
25
|
+
"type": "module",
|
|
26
|
+
"engines": {
|
|
27
|
+
"node": ">=16"
|
|
28
|
+
},
|
|
29
29
|
"files": [
|
|
30
30
|
"bin/kv-code.js",
|
|
31
31
|
"scripts/postinstall.js",
|
|
@@ -41,9 +41,9 @@
|
|
|
41
41
|
"@hyperxenonzephyr/kv-code-win32-arm64": "0.0.0-dev"
|
|
42
42
|
},
|
|
43
43
|
"repository": {
|
|
44
|
-
"type": "git",
|
|
44
|
+
"type": "git",
|
|
45
45
|
"url": "git+https://github.com/HyperXenonZephyr/Kv-code.git",
|
|
46
|
-
"directory": "kv-code-cli"
|
|
47
|
-
},
|
|
48
|
-
"packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319"
|
|
49
|
-
}
|
|
46
|
+
"directory": "kv-code-cli"
|
|
47
|
+
},
|
|
48
|
+
"packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319"
|
|
49
|
+
}
|
package/scripts/postinstall.js
CHANGED
|
@@ -250,6 +250,7 @@ async function main() {
|
|
|
250
250
|
|
|
251
251
|
console.error("");
|
|
252
252
|
console.error(`[kv-code] Native binary not found for ${platform} (${arch})`);
|
|
253
|
+
console.error(` The kv-code command will not be available until the binary is installed.`);
|
|
253
254
|
console.error("");
|
|
254
255
|
console.error(" To install manually:");
|
|
255
256
|
console.error("");
|
|
@@ -261,7 +262,7 @@ async function main() {
|
|
|
261
262
|
console.error(` Then copy the binary to:`);
|
|
262
263
|
console.error(` ${binaryPath}`);
|
|
263
264
|
console.error("");
|
|
264
|
-
process.exit(
|
|
265
|
+
process.exit(0);
|
|
265
266
|
}
|
|
266
267
|
|
|
267
268
|
main();
|