claudekit-cli 3.41.4-dev.33 → 3.41.4-dev.34
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/dist/index.js +988 -762
- package/package.json +3 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claudekit-cli",
|
|
3
|
-
"version": "3.41.4-dev.
|
|
3
|
+
"version": "3.41.4-dev.34",
|
|
4
4
|
"description": "CLI tool for bootstrapping and updating ClaudeKit projects",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
@@ -23,6 +23,7 @@
|
|
|
23
23
|
"tauri": "tauri",
|
|
24
24
|
"tauri:dev": "tauri dev",
|
|
25
25
|
"tauri:build": "tauri build",
|
|
26
|
+
"desktop:validate-config": "bun scripts/validate-desktop-bundle-config.ts",
|
|
26
27
|
"dev": "bun run src/index.ts",
|
|
27
28
|
"dashboard:dev": "cd src/ui && bun install --silent && cd ../.. && bun run src/index.ts config ui --dev",
|
|
28
29
|
"dashboard:tauri": "bun run ui:dev:tauri",
|
|
@@ -45,7 +46,7 @@
|
|
|
45
46
|
"dev:quick": "./scripts/dev-quick-start.sh",
|
|
46
47
|
"dev:all": "./scripts/dev-quick-start.sh all",
|
|
47
48
|
"metrics": "bun run scripts/workflow-metrics.ts",
|
|
48
|
-
"validate": "bun run typecheck && bun run lint && bun test && bun run ui:test && bun run build",
|
|
49
|
+
"validate": "bun run typecheck && bun run lint && bun run desktop:validate-config && bun test && bun run ui:test && bun run build",
|
|
49
50
|
"install:hooks": "./.githooks/install.sh",
|
|
50
51
|
"prepare": "node -e \"try{require('child_process').execSync('git rev-parse --git-dir',{stdio:'ignore'});require('child_process').execSync('bash .githooks/install.sh',{stdio:'inherit'})}catch(e){console.warn('[i] Hook install skipped:',e.message)}\""
|
|
51
52
|
},
|