-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.58 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.58 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "websource",
"version": "0.1.0",
"description": "Local-first CLI tool that turns websites into reusable structured data sources",
"license": "MIT",
"author": "2fe2000 (https://github.com/2fe2000)",
"contributors": [
"2fe2000 (https://github.com/2fe2000)",
"Claude Sonnet 4.6 (https://claude.ai)"
],
"repository": {
"type": "git",
"url": "https://github.com/2fe2000/websource"
},
"homepage": "https://github.com/2fe2000/websource#readme",
"keywords": [
"web-scraping",
"data-extraction",
"cli",
"sqlite",
"playwright",
"cheerio"
],
"type": "module",
"bin": {
"websource": "./dist/bin/websource.js"
},
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc",
"dev": "tsx bin/websource.ts",
"mcp": "tsx bin/mcp-server.ts",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src/"
},
"dependencies": {
"@inquirer/prompts": "^7.2.0",
"@modelcontextprotocol/sdk": "^1.27.1",
"better-sqlite3": "^11.7.0",
"chalk": "^5.4.1",
"cheerio": "^1.0.0",
"cli-table3": "^0.6.5",
"commander": "^12.1.0",
"csv-stringify": "^6.5.2",
"fastify": "^5.2.0",
"nanoid": "^5.0.9",
"node-cron": "^3.0.3",
"pino": "^9.6.0",
"pino-pretty": "^13.0.0",
"playwright": "^1.49.0",
"undici": "^7.2.0",
"yaml": "^2.7.0",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.12",
"@types/node": "^22.10.0",
"@types/node-cron": "^3.0.11",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitest": "^2.1.0"
}
}