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
68 lines (68 loc) · 2.09 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.09 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
{
"name": "codebuff-project",
"version": "1.0.0",
"private": true,
"license": "UNLICENSED",
"workspaces": [
"common",
"backend",
"npm-app",
"web",
"test",
"packages/*",
"scripts"
],
"scripts": {
"start-db": "bun --cwd common db:start",
"start-client": "bun --cwd npm-app start",
"start-web": "bun run 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-dir ../../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}\"",
"bump": "bun run scripts/bump-version.ts",
"deploy:npm-app": "bun run bump && cd npm-app && npm publish",
"test:patch": "bun test test/__src__/patch.test.ts",
"typecheck": "bun run --cwd common build && bun run --cwd packages/code-map build && bun run --cwd backend typecheck-this-package && bun run --cwd npm-app typecheck-this-package && bun run --cwd web typecheck-this-package"
},
"devDependencies": {
"@tanstack/react-query": "^5.59.16",
"@types/lodash": "4.17.7",
"@types/node": "^22.9.0",
"@types/node-fetch": "^2.6.12",
"bun-types": "^1.2.2",
"ignore": "^6.0.2",
"lodash": "4.17.21",
"prettier": "3.3.2",
"ts-node": "^10.9.2",
"ts-pattern": "^5.5.0",
"tsconfig-paths": "4.2.0",
"types": "^0.1.1",
"typescript": "5.5.4"
},
"engines": {
"node": ">=20.0.0"
},
"trustedDependencies": [
"@homebridge/node-pty-prebuilt-multiarch",
"@vscode/ripgrep",
"tree-sitter-c",
"tree-sitter-c-sharp",
"tree-sitter-cpp",
"tree-sitter-go",
"tree-sitter-java",
"tree-sitter-javascript",
"tree-sitter-php",
"tree-sitter-python",
"tree-sitter-ruby",
"tree-sitter-rust"
],
"dependencies": {
"codebuff": "^1.0.119"
}
}