-
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) · 871 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 871 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
35
36
37
38
39
40
{
"name": "just-scrape",
"version": "0.2.1",
"description": "ScrapeGraph AI CLI tool",
"type": "module",
"main": "dist/cli.mjs",
"bin": {
"just-scrape": "dist/cli.mjs"
},
"scripts": {
"dev": "bun run src/cli.ts",
"build": "tsup",
"lint": "biome check .",
"format": "biome format . --write",
"test": "bun test",
"check": "tsc --noEmit && biome check .",
"prepublishOnly": "tsup"
},
"keywords": ["cli", "scraping", "ai", "scrapegraph"],
"author": "ScrapeGraph Team",
"license": "MIT",
"engines": {
"node": ">=22"
},
"files": ["dist"],
"dependencies": {
"@clack/prompts": "^0.10.0",
"chalk": "^5.4.1",
"citty": "^0.1.6",
"dotenv": "^17.2.4",
"scrapegraph-js": "^1.0.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/bun": "^1.3.9",
"@types/node": "^22.13.1",
"tsup": "^8.3.6",
"typescript": "^5.8.2"
}
}