-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 819 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 819 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
37
38
{
"dependencies": {
"commander": "^14.0.3",
"ink": "^7.0.1",
"lodash-es": "^4.18.1",
"openai": "^6.34.0",
"react": "^19.2.5",
"react-devtools-core": "^7.0.1"
},
"devDependencies": {
"@biomejs/biome": "2.4.12",
"@types/lodash-es": "^4.17.12",
"@types/react": "^19.2.14",
"lefthook": "^2.1.6",
"ultracite": "7.6.0"
},
"bin": {
"hello-agent": "dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"name": "hello-agent",
"description": "A CLI agent tool",
"scripts": {
"build": "bun build src/index.ts --target node --outfile dist/index.js",
"prepublishOnly": "bun run build",
"check": "ultracite check",
"fix": "ultracite fix"
},
"type": "module",
"version": "0.3.0",
"engines": {
"node": ">=24"
}
}