-
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) · 766 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 766 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": "openbuild",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"bin": {
"openbuild": "./src/index.ts"
},
"scripts": {
"test": "vitest run",
"build": "tsc",
"start": "ts-node src/index.ts",
"dev": "tsx watch src/index.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@clack/prompts": "^1.5.1",
"@openrouter/ai-sdk-provider": "^2.9.0",
"ai": "^6.0.193",
"chalk": "^5.6.2",
"commander": "^15.0.0",
"dotenv": "^17.4.2",
"figlet": "^1.11.0"
},
"devDependencies": {
"@types/figlet": "^1.7.0",
"@types/node": "^25.9.1",
"ts-node": "^10.9.2",
"tsx": "^4.22.3",
"typescript": "^6.0.3",
"vitest": "^4.1.8"
}
}