-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.16 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.16 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
{
"name": "og-engine",
"version": "0.1.0",
"type": "module",
"license": "SEE LICENSE IN LICENSE",
"scripts": {
"dev": "bun run --hot src/index.ts",
"start": "bun run src/index.ts",
"test": "vitest run",
"test:watch": "vitest",
"lint": "biome check src/ tests/",
"lint:fix": "biome check --write src/ tests/",
"format": "biome format --write src/ tests/",
"format:check": "biome format src/ tests/",
"type-check": "tsc --noEmit",
"bench": "bun run benchmarks/run.ts",
"fonts:download": "bun run scripts/download-fonts.ts",
"fonts:refresh-catalog": "bun run scripts/refresh-google-fonts.ts",
"bench:full": "bun run benchmarks/run-full.ts",
"prepare": "lefthook install"
},
"dependencies": {
"@napi-rs/canvas": "^0.1.97",
"better-sqlite3": "^12.8.0",
"cheerio": "^1.2.0",
"hono": "^4.12.10",
"resend": "^6.10.0",
"stripe": "^22.0.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "^2.4.10",
"@types/better-sqlite3": "^7.6.13",
"@types/bun": "^1.3.11",
"lefthook": "^2.1.4",
"puppeteer": "^24.40.0",
"typescript": "^6.0.2",
"vitest": "^4.1.2"
}
}