-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.24 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.24 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
{
"name": "forgecrawl",
"version": "0.1.0",
"private": true,
"description": "Self-hosted web scraper that converts websites to clean Markdown for LLMs",
"author": "cschweda",
"license": "MIT",
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "pnpm --filter @forgecrawl/app dev",
"dev:web": "pnpm --filter @forgecrawl/web dev",
"build": "pnpm --filter @forgecrawl/app build",
"build:web": "pnpm --filter @forgecrawl/web generate",
"start": "pnpm --filter @forgecrawl/app start",
"db:generate": "pnpm --filter @forgecrawl/app db:generate",
"db:migrate": "pnpm --filter @forgecrawl/app db:migrate",
"test": "pnpm --filter @forgecrawl/app test",
"test:health": "pnpm --filter @forgecrawl/app test:health",
"test:auth": "pnpm --filter @forgecrawl/app test:auth",
"test:security": "pnpm --filter @forgecrawl/app test:security",
"test:scrape": "pnpm --filter @forgecrawl/app test:scrape"
},
"pnpm": {
"onlyBuiltDependencies": [
"@parcel/watcher",
"bcrypt",
"better-sqlite3",
"esbuild"
]
},
"packageManager": "pnpm@10.30.3+sha512.c961d1e0a2d8e354ecaa5166b822516668b7f44cb5bd95122d590dd81922f606f5473b6d23ec4a5be05e7fcd18e8488d47d978bbe981872f1145d06e9a740017"
}