ccjk 13.3.20 → 13.3.21
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/chunks/package.mjs +1 -1
- package/dist/cli.mjs +0 -0
- package/package.json +65 -68
package/dist/chunks/package.mjs
CHANGED
package/dist/cli.mjs
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ccjk",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "13.3.
|
|
5
|
-
"packageManager": "pnpm@10.17.1",
|
|
4
|
+
"version": "13.3.21",
|
|
6
5
|
"description": "Turn Claude Code into a production-ready AI dev environment with one-command setup, persistent memory, MCP automation, cloud sync, and zero-config browser workflows.",
|
|
7
6
|
"author": {
|
|
8
7
|
"name": "CCJK Team",
|
|
@@ -81,71 +80,6 @@
|
|
|
81
80
|
"engines": {
|
|
82
81
|
"node": ">=20"
|
|
83
82
|
},
|
|
84
|
-
"scripts": {
|
|
85
|
-
"dev": "tsx ./src/cli.ts",
|
|
86
|
-
"build": "unbuild",
|
|
87
|
-
"start": "node bin/ccjk.mjs",
|
|
88
|
-
"typecheck": "tsc --noEmit",
|
|
89
|
-
"release:verify": "node scripts/release-verify.mjs",
|
|
90
|
-
"release:verify:full": "node scripts/release-verify.mjs --with-tests",
|
|
91
|
-
"prepublishOnly": "node scripts/validate-prepublish.mjs && pnpm contract:check && pnpm build",
|
|
92
|
-
"lint": "eslint",
|
|
93
|
-
"lint:fix": "eslint --fix",
|
|
94
|
-
"test": "vitest",
|
|
95
|
-
"test:ui": "vitest --ui",
|
|
96
|
-
"test:coverage": "vitest run --coverage",
|
|
97
|
-
"test:run": "vitest run",
|
|
98
|
-
"test:watch": "vitest watch",
|
|
99
|
-
"test:e2e": "NODE_ENV=test vitest --config vitest.e2e.config.ts",
|
|
100
|
-
"test:e2e:run": "NODE_ENV=test vitest run --config vitest.e2e.config.ts",
|
|
101
|
-
"test:e2e:ui": "NODE_ENV=test vitest --config vitest.e2e.config.ts --ui",
|
|
102
|
-
"test:e2e:coverage": "NODE_ENV=test vitest run --config vitest.e2e.config.ts --coverage",
|
|
103
|
-
"test:e2e:debug": "NODE_ENV=test CCJK_E2E_DEBUG=true vitest --config vitest.e2e.config.ts",
|
|
104
|
-
"test:v2": "vitest --config vitest.config.v2.ts",
|
|
105
|
-
"test:v2:ui": "vitest --config vitest.config.v2.ts --ui",
|
|
106
|
-
"test:v2:coverage": "vitest run --config vitest.config.v2.ts --coverage",
|
|
107
|
-
"test:v2:run": "vitest run --config vitest.config.v2.ts",
|
|
108
|
-
"test:v2:watch": "vitest watch --config vitest.config.v2.ts",
|
|
109
|
-
"test:integration": "NODE_ENV=test vitest --config vitest.integration.config.ts",
|
|
110
|
-
"test:integration:run": "NODE_ENV=test vitest run --config vitest.integration.config.ts",
|
|
111
|
-
"test:integration:ui": "NODE_ENV=test vitest --config vitest.integration.config.ts --ui",
|
|
112
|
-
"test:integration:coverage": "NODE_ENV=test vitest run --config vitest.integration.config.ts --coverage",
|
|
113
|
-
"prepare": "husky",
|
|
114
|
-
"format": "prettier --write src/**/*.ts",
|
|
115
|
-
"prepublish:fix": "node scripts/fix-package-catalog.mjs",
|
|
116
|
-
"cleanup": "node scripts/cleanup.js",
|
|
117
|
-
"cleanup:auto": "node scripts/cleanup.js --auto",
|
|
118
|
-
"cleanup:dry": "node scripts/cleanup.js --dry-run",
|
|
119
|
-
"clean": "rm -rf dist coverage .turbo *.tsbuildinfo",
|
|
120
|
-
"benchmark:compression": "tsx scripts/benchmark-compression.ts",
|
|
121
|
-
"v2:setup": "chmod +x scripts/v2-dev-setup.sh && ./scripts/v2-dev-setup.sh",
|
|
122
|
-
"v2:setup:skip-tests": "chmod +x scripts/v2-dev-setup.sh && ./scripts/v2-dev-setup.sh --skip-tests",
|
|
123
|
-
"v2:services:up": "docker-compose -f docker-compose.dev.yml up -d",
|
|
124
|
-
"v2:services:down": "docker-compose -f docker-compose.dev.yml down",
|
|
125
|
-
"v2:services:restart": "docker-compose -f docker-compose.dev.yml restart",
|
|
126
|
-
"v2:services:logs": "docker-compose -f docker-compose.dev.yml logs -f",
|
|
127
|
-
"v2:services:status": "docker-compose -f docker-compose.dev.yml ps",
|
|
128
|
-
"v2:db:reset": "docker-compose -f docker-compose.dev.yml down postgres && docker volume rm ccjk-public_postgres_data && docker-compose -f docker-compose.dev.yml up -d postgres",
|
|
129
|
-
"v2:db:migrate": "echo 'Database migration script - to be implemented'",
|
|
130
|
-
"v2:db:seed": "echo 'Database seeding script - to be implemented'",
|
|
131
|
-
"v2:cache:clear": "docker exec ccjk-redis-dev redis-cli FLUSHALL",
|
|
132
|
-
"v2:search:reindex": "curl -X DELETE http://localhost:9200/ccjk_dev* && echo 'Elasticsearch indexes cleared'",
|
|
133
|
-
"v2:health": "chmod +x scripts/health-check.sh && ./scripts/health-check.sh",
|
|
134
|
-
"v2:dev": "concurrently \"pnpm v2:services:up\" \"pnpm dev\"",
|
|
135
|
-
"v2:test:integration": "NODE_ENV=test pnpm test -- --config vitest.integration.config.ts",
|
|
136
|
-
"v2:test:e2e": "NODE_ENV=test pnpm test -- --config vitest.e2e.config.ts",
|
|
137
|
-
"v2:monitoring:up": "docker-compose -f docker-compose.dev.yml --profile monitoring up -d",
|
|
138
|
-
"v2:tracing:up": "docker-compose -f docker-compose.dev.yml --profile tracing up -d",
|
|
139
|
-
"v2:clean": "pnpm clean && docker-compose -f docker-compose.dev.yml down -v && docker system prune -f",
|
|
140
|
-
"benchmark": "tsx src/v2/__tests__/benchmarks.ts",
|
|
141
|
-
"benchmark:save": "tsx src/v2/__tests__/benchmarks.ts && echo 'Results saved to .ccjk/benchmark-results.json'",
|
|
142
|
-
"benchmark:detailed": "tsx src/v2/__tests__/benchmarks.ts --detailed",
|
|
143
|
-
"benchmark:server": "npx http-server docs/v2 -p 8080 -o dashboard.html",
|
|
144
|
-
"benchmark:open": "open docs/v2/dashboard.html || xdg-open docs/v2/dashboard.html || start docs/v2/dashboard.html",
|
|
145
|
-
"i18n:check": "tsx scripts/check-i18n.ts",
|
|
146
|
-
"i18n:report": "tsx scripts/check-i18n.ts --report",
|
|
147
|
-
"contract:check": "node scripts/check-remote-contract.mjs"
|
|
148
|
-
},
|
|
149
83
|
"dependencies": {
|
|
150
84
|
"better-sqlite3": "^12.6.2",
|
|
151
85
|
"fdir": "^6.5.0",
|
|
@@ -208,5 +142,68 @@
|
|
|
208
142
|
"unbuild": "^3.6.1",
|
|
209
143
|
"uuid": "^11.1.0",
|
|
210
144
|
"vitest": "^3.2.4"
|
|
145
|
+
},
|
|
146
|
+
"scripts": {
|
|
147
|
+
"dev": "tsx ./src/cli.ts",
|
|
148
|
+
"build": "unbuild",
|
|
149
|
+
"start": "node bin/ccjk.mjs",
|
|
150
|
+
"typecheck": "tsc --noEmit",
|
|
151
|
+
"release:verify": "node scripts/release-verify.mjs",
|
|
152
|
+
"release:verify:full": "node scripts/release-verify.mjs --with-tests",
|
|
153
|
+
"lint": "eslint",
|
|
154
|
+
"lint:fix": "eslint --fix",
|
|
155
|
+
"test": "vitest",
|
|
156
|
+
"test:ui": "vitest --ui",
|
|
157
|
+
"test:coverage": "vitest run --coverage",
|
|
158
|
+
"test:run": "vitest run",
|
|
159
|
+
"test:watch": "vitest watch",
|
|
160
|
+
"test:e2e": "NODE_ENV=test vitest --config vitest.e2e.config.ts",
|
|
161
|
+
"test:e2e:run": "NODE_ENV=test vitest run --config vitest.e2e.config.ts",
|
|
162
|
+
"test:e2e:ui": "NODE_ENV=test vitest --config vitest.e2e.config.ts --ui",
|
|
163
|
+
"test:e2e:coverage": "NODE_ENV=test vitest run --config vitest.e2e.config.ts --coverage",
|
|
164
|
+
"test:e2e:debug": "NODE_ENV=test CCJK_E2E_DEBUG=true vitest --config vitest.e2e.config.ts",
|
|
165
|
+
"test:v2": "vitest --config vitest.config.v2.ts",
|
|
166
|
+
"test:v2:ui": "vitest --config vitest.config.v2.ts --ui",
|
|
167
|
+
"test:v2:coverage": "vitest run --config vitest.config.v2.ts --coverage",
|
|
168
|
+
"test:v2:run": "vitest run --config vitest.config.v2.ts",
|
|
169
|
+
"test:v2:watch": "vitest watch --config vitest.config.v2.ts",
|
|
170
|
+
"test:integration": "NODE_ENV=test vitest --config vitest.integration.config.ts",
|
|
171
|
+
"test:integration:run": "NODE_ENV=test vitest run --config vitest.integration.config.ts",
|
|
172
|
+
"test:integration:ui": "NODE_ENV=test vitest --config vitest.integration.config.ts --ui",
|
|
173
|
+
"test:integration:coverage": "NODE_ENV=test vitest run --config vitest.integration.config.ts --coverage",
|
|
174
|
+
"format": "prettier --write src/**/*.ts",
|
|
175
|
+
"prepublish:fix": "node scripts/fix-package-catalog.mjs",
|
|
176
|
+
"cleanup": "node scripts/cleanup.js",
|
|
177
|
+
"cleanup:auto": "node scripts/cleanup.js --auto",
|
|
178
|
+
"cleanup:dry": "node scripts/cleanup.js --dry-run",
|
|
179
|
+
"clean": "rm -rf dist coverage .turbo *.tsbuildinfo",
|
|
180
|
+
"benchmark:compression": "tsx scripts/benchmark-compression.ts",
|
|
181
|
+
"v2:setup": "chmod +x scripts/v2-dev-setup.sh && ./scripts/v2-dev-setup.sh",
|
|
182
|
+
"v2:setup:skip-tests": "chmod +x scripts/v2-dev-setup.sh && ./scripts/v2-dev-setup.sh --skip-tests",
|
|
183
|
+
"v2:services:up": "docker-compose -f docker-compose.dev.yml up -d",
|
|
184
|
+
"v2:services:down": "docker-compose -f docker-compose.dev.yml down",
|
|
185
|
+
"v2:services:restart": "docker-compose -f docker-compose.dev.yml restart",
|
|
186
|
+
"v2:services:logs": "docker-compose -f docker-compose.dev.yml logs -f",
|
|
187
|
+
"v2:services:status": "docker-compose -f docker-compose.dev.yml ps",
|
|
188
|
+
"v2:db:reset": "docker-compose -f docker-compose.dev.yml down postgres && docker volume rm ccjk-public_postgres_data && docker-compose -f docker-compose.dev.yml up -d postgres",
|
|
189
|
+
"v2:db:migrate": "echo 'Database migration script - to be implemented'",
|
|
190
|
+
"v2:db:seed": "echo 'Database seeding script - to be implemented'",
|
|
191
|
+
"v2:cache:clear": "docker exec ccjk-redis-dev redis-cli FLUSHALL",
|
|
192
|
+
"v2:search:reindex": "curl -X DELETE http://localhost:9200/ccjk_dev* && echo 'Elasticsearch indexes cleared'",
|
|
193
|
+
"v2:health": "chmod +x scripts/health-check.sh && ./scripts/health-check.sh",
|
|
194
|
+
"v2:dev": "concurrently \"pnpm v2:services:up\" \"pnpm dev\"",
|
|
195
|
+
"v2:test:integration": "NODE_ENV=test pnpm test -- --config vitest.integration.config.ts",
|
|
196
|
+
"v2:test:e2e": "NODE_ENV=test pnpm test -- --config vitest.e2e.config.ts",
|
|
197
|
+
"v2:monitoring:up": "docker-compose -f docker-compose.dev.yml --profile monitoring up -d",
|
|
198
|
+
"v2:tracing:up": "docker-compose -f docker-compose.dev.yml --profile tracing up -d",
|
|
199
|
+
"v2:clean": "pnpm clean && docker-compose -f docker-compose.dev.yml down -v && docker system prune -f",
|
|
200
|
+
"benchmark": "tsx src/v2/__tests__/benchmarks.ts",
|
|
201
|
+
"benchmark:save": "tsx src/v2/__tests__/benchmarks.ts && echo 'Results saved to .ccjk/benchmark-results.json'",
|
|
202
|
+
"benchmark:detailed": "tsx src/v2/__tests__/benchmarks.ts --detailed",
|
|
203
|
+
"benchmark:server": "npx http-server docs/v2 -p 8080 -o dashboard.html",
|
|
204
|
+
"benchmark:open": "open docs/v2/dashboard.html || xdg-open docs/v2/dashboard.html || start docs/v2/dashboard.html",
|
|
205
|
+
"i18n:check": "tsx scripts/check-i18n.ts",
|
|
206
|
+
"i18n:report": "tsx scripts/check-i18n.ts --report",
|
|
207
|
+
"contract:check": "node scripts/check-remote-contract.mjs"
|
|
211
208
|
}
|
|
212
|
-
}
|
|
209
|
+
}
|