-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.35 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "code-kit-ultra",
"version": "1.3.0",
"private": true,
"type": "module",
"workspaces": [
"packages/*",
"apps/*",
"extensions/*"
],
"scripts": {
"ck": "tsx apps/cli/src/index.ts",
"preflight": "pnpm run typecheck && pnpm run test:auth",
"build": "pnpm -r build",
"typecheck": "tsc --noEmit",
"test:auth": "vitest run packages/auth",
"test:governance": "vitest run packages/governance",
"test:orchestrator": "vitest run packages/orchestrator",
"test:smoke": "vitest run apps/control-service/test/smoke.test.ts",
"test:unit": "vitest run packages/",
"test:integration": "vitest run apps/control-service/test/",
"test:all": "vitest run",
"test:coverage": "vitest run --coverage",
"test:session": "vitest run packages/auth/src/resolve-session.test.ts",
"test:rbac": "vitest run packages/auth/src/rbac.ts",
"db:migrate": "tsx apps/control-service/src/db/migrate.ts",
"db:seed": "SEED_DATABASE=true tsx apps/control-service/src/index.ts --seed-only",
"dev:web": "npm run dev -w apps/web-control-plane",
"version:bump": "tsx scripts/release/bump-version.ts",
"release:notes": "tsx scripts/release/generate-release-notes.ts",
"changelog:update": "tsx scripts/release/update-changelog.ts",
"lint:commits": "tsx scripts/release/lint-commits.ts",
"release:prepare": "npm run release:notes && npm run changelog:update",
"package:release": "scripts/package-release.sh",
"release:control-center": "tsx scripts/release/control-center.ts",
"release:control": "npm run release:control-center",
"release:control:milestone": "MILESTONE_NAME='Phase 10 Milestone' tsx scripts/release/control-center.ts",
"release:validate": "tsx scripts/release/validate-release.ts",
"cku": "npx tsx ./codekit/apps/cli/src/index.ts"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^24.0.0",
"@types/supertest": "^7.2.0",
"@vitest/coverage-v8": "^2.1.0",
"@vitest/ui": "^2.1.0",
"supertest": "^7.2.2",
"tsx": "^4.19.0",
"typescript": "^5.8.0",
"vitest": "^2.1.0"
},
"dependencies": {
"axios": "^1.7.7",
"chalk": "^5.3.0",
"commander": "^14.0.3",
"inquirer": "^13.3.2",
"jsonwebtoken": "^9.0.2",
"jwks-rsa": "^3.1.0",
"zod": "^3.23.8"
}
}