-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.34 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.34 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
{
"name": "scrapingai",
"version": "1.0.1",
"description": "Build web scraping agents using AI to auto-extract the data from websites",
"main": "dist/index.js",
"module": "dist/index.m.js",
"unpkg": "dist/index.umd.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rimraf ./dist && microbundle --tsconfig tsconfig.json --no-sourcemap",
"dev": "ts-node-dev lib/index.ts",
"test": "npx playwright test",
"dev-test": "ts-node-dev lib/test.ts"
},
"exports": {
"require": "./dist/index.js",
"default": "./dist/index.modern.js"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Agenty/scrapingai.git"
},
"keywords": [
"scraping",
"crawling",
"scraping api",
"web scraping",
"data scraping",
"url scraping",
"web crawling",
"agenty",
"webscraper"
],
"author": "https://github.com/vickyRathee",
"license": "MIT",
"bugs": {
"url": "https://github.com/Agenty/scrapingai/issues"
},
"homepage": "https://agenty.com/",
"dependencies": {
"axios": "^1.5.1"
},
"devDependencies": {
"@playwright/test": "^1.38.1",
"@types/node": "^20.8.3",
"dotenv": "^16.3.1",
"microbundle": "^0.15.1",
"rimraf": "^5.0.5",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.2.2"
}
}