-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.08 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.08 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
{
"name": "@tigtech/sage",
"version": "0.1.10",
"description": "AI code reviewer that provides automatic second opinions on Claude Code sessions",
"main": "./dist/index.js",
"bin": {
"sage": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"start": "tsx src/index.tsx",
"build": "tsc",
"dev": "tsx watch src/index.tsx",
"configure-hooks": "tsx src/scripts/configureHooks.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/usetig/sage.git"
},
"keywords": [
"claude",
"code-review",
"ai",
"cli",
"claude-code"
],
"author": "",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"bugs": {
"url": "https://github.com/usetig/sage/issues"
},
"homepage": "https://github.com/usetig/sage#readme",
"dependencies": {
"@openai/codex-sdk": "^0.48.0",
"chokidar": "^3.6.0",
"ink": "^6.3.1",
"react": "^19.2.0"
},
"devDependencies": {
"@types/node": "^24.9.1",
"@types/react": "^19.2.2",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
}
}