-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 754 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 754 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
{
"name": "coderag",
"private": true,
"packageManager": "pnpm@8.15.0",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=20",
"pnpm": ">=8"
},
"scripts": {
"build": "pnpm -r run build",
"test": "pnpm -r run test",
"lint": "eslint .",
"clean": "pnpm -r run clean",
"benchmark": "pnpm -r --filter @code-rag/benchmarks run benchmark",
"changeset": "changeset",
"version": "changeset version",
"release": "pnpm build && pnpm test && changeset publish",
"publish:check": "node scripts/prepublish-check.mjs"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"eslint": "^9.20.0",
"prettier": "^3.5.1",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.0"
}
}