-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.38 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.38 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
{
"name": "light-ai",
"module": "./src/app.ts",
"type": "module",
"version": "0.0.2",
"license": "MIT",
"scripts": {
"dev": "bun --watch ./src/app.ts",
"build": "bun build ./src/app.ts",
"start": "NODE_ENV=production bun ./src/app.ts",
"test": "bun test ./src/app.test.ts",
"lint": "biome check --write --diagnostic-level=error ./src",
"debug": "bun --inspect --watch ./src/app.ts",
"compile": "bun ./scripts/compile.ts",
"compile:mac-silicon": "bun ./scripts/compile.ts -t bun-darwin-arm64",
"compile:mac-intel": "bun ./scripts/compile.ts -t bun-darwin-x64",
"compile:linux": "bun ./scripts/compile.ts -t bun-linux-x64-modern",
"compile:win": "bun ./scripts/compile.ts -t bun-windows-x64-modern"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/async-retry": "^1.4.9",
"@types/bun": "latest",
"@types/cli-progress": "^3.11.6",
"@types/fs-extra": "^11.0.4"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@elysiajs/cors": "^1.1.1",
"@elysiajs/swagger": "^1.1.6",
"@huggingface/jinja": "^0.3.2",
"async-retry": "^1.3.3",
"chalk": "^5.4.1",
"cli-progress": "^3.12.0",
"elysia": "^1.1.26",
"filenamify": "^6.0.0",
"fs-extra": "^11.2.0",
"is-unicode-supported": "^2.1.0",
"lifecycle-utils": "^1.7.1"
},
"trustedDependencies": ["@biomejs/biome"]
}