-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.04 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.04 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
{
"name": "@beetleai_dev/beetle",
"version": "0.0.2",
"description": "AI-Powered Code Review Assistant CLI",
"main": "dist/index.js",
"bin": {
"beetle": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"prepublishOnly": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"cli",
"code-review",
"ai",
"beetle"
],
"author": "",
"license": "ISC",
"type": "module",
"dependencies": {
"@clack/core": "^0.5.0",
"@clack/prompts": "^0.11.0",
"clipboardy": "^5.1.0",
"commander": "^14.0.2",
"gradient-string": "^3.0.0",
"ink": "^6.6.0",
"ink-markdown": "^1.0.4",
"ink-spinner": "^5.0.0",
"ink-use-stdout-dimensions": "^1.0.5",
"open": "^11.0.0",
"picocolors": "^1.1.1",
"react": "^19.2.4"
},
"devDependencies": {
"@types/node": "^25.0.3",
"@types/react": "^19.2.10",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}