forked from spencermarx/open-code-review
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 905 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 905 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
35
36
{
"name": "open-code-review",
"version": "1.8.4",
"private": true,
"description": "Open Code Review - AI-powered multi-agent code review",
"repository": {
"type": "git",
"url": "https://github.com/spencermarx/open-code-review"
},
"license": "Apache-2.0",
"author": "Spencer Marx",
"engines": {
"node": ">=20.0.0"
},
"packageManager": "pnpm@9.15.0",
"scripts": {
"build": "nx run-many -t build",
"build:cli": "nx build cli",
"test": "nx run-many -t test",
"test:cli": "nx test cli",
"lint": "nx run-many -t lint",
"lint:cli": "nx lint cli"
},
"devDependencies": {
"@nx/esbuild": "^22.0.0",
"@nx/js": "^22.0.0",
"@swc-node/register": "^1.11.1",
"@swc/core": "^1.15.18",
"@types/node": "^22.10.5",
"esbuild": "^0.24.0",
"nx": "^22.0.0",
"tsx": "^4.19.0",
"typescript": "^5.7.3",
"vitest": "^3.0.4"
}
}