-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 869 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 869 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
{
"name": "hexos",
"version": "0.7.4",
"description": "Lightweight AI API proxy with format translation and multi-provider support",
"type": "module",
"bin": {
"hexos": "./src/index.ts"
},
"scripts": {
"dev": "bun run --watch src/index.ts start",
"start": "bun run src/index.ts start",
"build": "bun build src/index.ts --outfile dist/hexos --target bun",
"build:release": "bun scripts/build.ts",
"build:release:all": "bun scripts/build.ts --all"
},
"dependencies": {
"@lobehub/icons": "^5.5.4",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"hono": "^4.6.0",
"js-yaml": "^4.1.1",
"lowdb": "^7.0.1",
"node-forge": "^1.4.0",
"open": "^10.1.0"
},
"devDependencies": {
"@types/bun": "latest",
"@types/js-yaml": "^4.0.9",
"@types/node-forge": "^1.3.14",
"typescript": "^5.6.0"
}
}