-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.79 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
{
"name": "cheatcode",
"private": true,
"license": "PolyForm-Noncommercial-1.0.0",
"description": "A source-available generalist AI agent platform built on Cloudflare.",
"homepage": "https://github.com/cheatcode-ai/cheatcode#readme",
"bugs": {
"url": "https://github.com/cheatcode-ai/cheatcode/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cheatcode-ai/cheatcode.git"
},
"type": "module",
"packageManager": "pnpm@11.15.0",
"engines": {
"node": "24.18.0"
},
"scripts": {
"architecture:check": "dependency-cruise --config .dependency-cruiser.cjs --ts-config tsconfig.base.json --exclude '(^|/)(\\.next|\\.turbo|node_modules)/' apps packages",
"build": "turbo build",
"db:migrate": "tsx scripts/migrate.ts",
"db:generate": "turbo db:generate",
"deadcode": "turbo build --filter=@cheatcode/env --filter=@cheatcode/skills && knip",
"dev": "docker compose --env-file .env.local up --build --watch --remove-orphans",
"dev:down": "docker compose --env-file .env.local down --remove-orphans",
"dev:services": "tsx scripts/dev.ts",
"dev:setup": "tsx scripts/setup.ts",
"lint": "biome check --error-on-warnings .",
"prepare": "lefthook install",
"skills:build": "turbo skills:build",
"typecheck": "turbo typecheck && pnpm typecheck:scripts",
"typecheck:scripts": "tsc -p tsconfig.scripts.json --noEmit"
},
"devDependencies": {
"@biomejs/biome": "catalog:",
"@clack/prompts": "catalog:",
"@commitlint/cli": "catalog:",
"@commitlint/config-conventional": "catalog:",
"@types/node": "catalog:",
"dependency-cruiser": "catalog:",
"knip": "catalog:",
"lefthook": "catalog:",
"tsx": "catalog:",
"turbo": "catalog:",
"typescript": "catalog:",
"wrangler": "catalog:"
}
}