-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 889 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 889 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
{
"name": "forge-shows",
"module": "index.ts",
"type": "module",
"private": true,
"scripts": {
"prepare": "if [ -z \"$CI\" ]; then husky; fi",
"crawl": "bun src/crawler.ts",
"multi-crawl": "mkdir -p results && bun src/multi-crawl.ts",
"build": "bun src/buildFeed.ts",
"dev": "mkdir -p results && bun crawl && bun run build",
"full": "bun multi-crawl && bun run build && bun run serve",
"test": "mkdir -p results docs && bun src/test.ts",
"serve": "bun --hot src/server.ts",
"format": "biome format --write .",
"lint": "biome check . --fix",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"ai": "^4.3.16",
"@ai-sdk/openai": "^1.3.22",
"cheerio": "^1.1.0",
"feed": "^5.1.0",
"zod": "^3.25.63"
},
"devDependencies": {
"@types/bun": "latest",
"@types/node": "^24.0.1",
"husky": "^9.1.7"
},
"peerDependencies": {
"typescript": "^5.8.3"
}
}