claudekit-cli 2.5.0 → 2.5.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/bin/ck.js +124 -29
- package/dist/index.js +32492 -0
- package/package.json +3 -3
- package/bin/ck-darwin-arm64 +0 -0
- package/bin/ck-darwin-x64 +0 -0
- package/bin/ck-linux-x64 +0 -0
- package/bin/ck-win32-x64.exe +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claudekit-cli",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.2",
|
|
4
4
|
"description": "CLI tool for bootstrapping and updating ClaudeKit projects",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
@@ -15,7 +15,8 @@
|
|
|
15
15
|
"ck": "bin/ck.js"
|
|
16
16
|
},
|
|
17
17
|
"files": [
|
|
18
|
-
"bin"
|
|
18
|
+
"bin/ck.js",
|
|
19
|
+
"dist/index.js"
|
|
19
20
|
],
|
|
20
21
|
"scripts": {
|
|
21
22
|
"dev": "bun run src/index.ts",
|
|
@@ -24,7 +25,6 @@
|
|
|
24
25
|
"compile:binary": "bun build src/index.ts --compile --outfile bin/ck",
|
|
25
26
|
"compile:binaries": "node scripts/build-all-binaries.js",
|
|
26
27
|
"check-version-sync": "node scripts/check-binary-version-sync.js",
|
|
27
|
-
"prepublishOnly": "npm run build && npm run compile && npm run build:platform-binaries",
|
|
28
28
|
"build:platform-binaries": "bun run scripts/build-platform-binaries.js",
|
|
29
29
|
"test": "bun test",
|
|
30
30
|
"test:watch": "bun test --watch",
|
package/bin/ck-darwin-arm64
DELETED
|
Binary file
|
package/bin/ck-darwin-x64
DELETED
|
Binary file
|
package/bin/ck-linux-x64
DELETED
|
Binary file
|
package/bin/ck-win32-x64.exe
DELETED
|
Binary file
|