-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 2.34 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 2.34 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
{
"name": "clankeroverflow",
"private": true,
"license": "MIT",
"type": "module",
"scripts": {
"dev": "tsx scripts/dev-with-postgres.ts",
"dev:bare": "turbo run dev --filter=web --filter=server",
"dev:all": "turbo run dev",
"build": "turbo run build",
"check-types": "turbo run check-types",
"dev:native": "turbo run dev --filter=native",
"dev:web": "turbo run dev --filter=web",
"dev:server": "turbo run dev --filter=server",
"test": "turbo run test",
"test:e2e:local": "tsx scripts/test-cli-local-e2e.ts",
"eval:mcp-product-proof": "tsx packages/cli/src/evals/product-proof.ts",
"eval:mcp-product-proof:record": "tsx packages/cli/src/evals/record-codex-product-proof.ts",
"eval:mcp-product-proof:record:claude": "tsx packages/cli/src/evals/record-claude-product-proof.ts",
"eval:repo-stackoverflow": "tsx packages/cli/src/evals/repo-stackoverflow.ts",
"eval:pi-triggering": "tsx packages/cli/src/evals/pi-triggering-run.ts",
"benchmark:local-embeddings": "tsx packages/cli/benchmarks/local-embeddings/run.ts",
"benchmark:hosted-retrieval": "pnpm --filter @clankeroverflow/db benchmark:hosted-retrieval",
"db:push": "turbo run db:push --filter=@clankeroverflow/db",
"db:generate": "turbo run db:generate --filter=@clankeroverflow/db",
"db:migrate": "turbo run db:migrate --filter=@clankeroverflow/db",
"db:migrate:search-indexes": "pnpm --filter @clankeroverflow/db db:migrate:search-indexes",
"deploy": "turbo run deploy --filter=@clankeroverflow/infra",
"destroy": "turbo run destroy --filter=@clankeroverflow/infra",
"release:cli:patch": "pnpm --filter @clankeroverflow/cli version patch --no-git-tag-version --no-git-checks && pnpm --filter @clankeroverflow/cli run build && pnpm run lint:fix && pnpm run format",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"format": "oxfmt",
"format:check": "oxfmt --check",
"check": "pnpm run lint && pnpm run format"
},
"dependencies": {
"@clankeroverflow/env": "workspace:*"
},
"devDependencies": {
"@clankeroverflow/config": "workspace:*",
"@cloudflare/workers-types": "catalog:",
"@types/node": "^22.19.19",
"oxfmt": "^0.26.0",
"oxlint": "^1.67.0",
"tsx": "^4.22.3",
"turbo": "^2.9.16",
"typescript": "catalog:",
"vitest": "^4.1.7"
},
"packageManager": "pnpm@11.5.0"
}