-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1012 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 1012 Bytes
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
{
"name": "codebaseqa",
"version": "0.1.0",
"private": true,
"description": "AI-powered codebase understanding and Q&A tool",
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"lint": "turbo lint",
"test": "turbo test",
"type-check": "turbo type-check",
"web:dev": "pnpm --filter web dev",
"web:build": "pnpm --filter web build",
"web:start": "pnpm --filter web start",
"web:verify-css": "node scripts/verify-web-css.mjs",
"demo:prewarm": "node scripts/prewarm-demo.mjs",
"clean": "turbo clean && rm -rf node_modules",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\""
},
"keywords": ["codebase", "ai", "rag", "code-understanding", "developer-tools"],
"author": "",
"license": "MIT",
"packageManager": "pnpm@10.28.2",
"devDependencies": {
"@tailwindcss/postcss": "^4",
"prettier": "^3.2.0",
"tailwindcss": "^4",
"turbo": "^2.8.1",
"typescript": "^5.4.0"
},
"engines": {
"node": ">=20.0.0"
}
}