-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1010 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 1010 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
41
42
43
44
45
46
{
"name": "@mrscraper/sdk",
"version": "1.0.1",
"description": "Official Node.js SDK for the MrScraper API – fetch pages, run AI scrapers, rerun manual scrapers, and retrieve results.",
"license": "MIT",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build"
},
"devDependencies": {
"@types/node": "^25.3.3",
"dotenv": "^17.3.1",
"typescript": "^5.6.0"
},
"engines": {
"node": ">=18"
},
"keywords": [
"mrscraper",
"scraper",
"web-scraping",
"scraping",
"sdk",
"api-client"
],
"repository": {
"type": "git",
"url": "https://github.com/mrscraper-com/sdk-node.git"
},
"homepage": "https://mrscraper.com"
}