-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.09 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.09 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
{
"name": "scrapegraph-js",
"version": "1.0.0",
"description": "Official JavaScript/TypeScript SDK for the ScrapeGraph AI API — smart web scraping powered by AI",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"lint": "biome check .",
"format": "biome format . --write",
"test": "bun test tests/",
"test:integration": "bun run integration_test.ts",
"check": "tsc --noEmit && biome check .",
"prepublishOnly": "tsup"
},
"keywords": ["scraping", "ai", "scrapegraph", "typescript", "sdk", "web-scraping", "api"],
"author": "ScrapeGraph Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ScrapeGraphAI/scrapegraph-sdk.git"
},
"homepage": "https://scrapegraphai.com",
"engines": {
"node": ">=22"
},
"files": ["dist"],
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/bun": "^1.3.9",
"@types/node": "^22.13.1",
"tsup": "^8.3.6",
"typescript": "^5.8.2"
}
}