forked from CodebuffAI/codebuff
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.5 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.5 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
64
65
66
67
68
69
70
71
72
73
74
{
"name": "codebuff-project",
"version": "1.0.0",
"private": true,
"license": "Apache-2.0",
"type": "module",
"workspaces": [
"common",
"backend",
"npm-app",
"web",
"packages/*",
"scripts",
"evals",
"sdk",
".agents"
],
"scripts": {
"dev": "bash scripts/dev.sh",
"start-db": "bun --cwd common db:start",
"start-bin": "bun --cwd npm-app start-bin",
"start-web": "bun start-db && bun --cwd web dev",
"start-studio": "bun --cwd common db:studio",
"start-server": "bun --cwd backend dev",
"start-manifold": "bun --cwd npm-app start-manifold",
"start-codebuff-test": "bun --cwd npm-app start --cwd ../../codebuff-test",
"start-litestar": "bun --cwd npm-app start-litestar",
"start-jpcsp": "bun --cwd npm-app start-jpcsp",
"start-vscode": "bun --cwd npm-app start-vscode",
"start-nushell": "bun --cwd npm-app start-nushell",
"format": "prettier --write \"**/*.{ts,tsx,json,md}\"",
"release:npm-app": "bun run --cwd npm-app release",
"clean-ts": "find . -name '*.tsbuildinfo' -type f -delete && find . -name '.next' -type d -exec rm -rf {} + 2>/dev/null || true && find . -name 'node_modules' -type d -exec rm -rf {} + 2>/dev/null || true && bun install",
"typecheck": "bun --filter='*' run typecheck && echo '✅ All type checks passed!'",
"test": "bun --filter='{@codebuff/backend,@codebuff/common,@codebuff/npm-app,@codebuff/agents}' run test",
"init-worktree": "bun scripts/init-worktree.ts",
"cleanup-worktree": "bash scripts/cleanup-worktree.sh",
"generate-tool-definitions": "bun scripts/generate-tool-definitions.ts"
},
"dependencies": {
"@t3-oss/env-nextjs": "^0.7.3",
"zod": "3.25.67"
},
"overrides": {
"zod": "3.25.67"
},
"devDependencies": {
"@tanstack/react-query": "^5.59.16",
"@types/bun": "^1.2.11",
"@types/lodash": "4.17.7",
"@types/node": "^22.9.0",
"@types/node-fetch": "^2.6.12",
"@types/parse-path": "^7.1.0",
"@typescript-eslint/eslint-plugin": "^6.17",
"bun-types": "^1.2.2",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-unused-imports": "^4.1.4",
"ignore": "^6.0.2",
"lodash": "4.17.21",
"prettier": "3.3.2",
"ts-node": "^10.9.2",
"ts-pattern": "^5.5.0",
"tsc-alias": "1.7.0",
"tsconfig-paths": "4.2.0",
"types": "^0.1.1",
"typescript": "5.5.4",
"typescript-eslint": "^7.17.0"
},
"engines": {
"node": ">=20.0.0"
},
"packageManager": "bun@1.0.0"
}