-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.7 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.7 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
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@hyperbrowser/sdk",
"version": "0.86.0",
"description": "Node SDK for Hyperbrowser API",
"author": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "commonjs",
"license": "MIT",
"scripts": {
"build": "tsc",
"lint": "eslint src/**/*.ts",
"prepare": "yarn build",
"test": "vitest run",
"test:e2e": "vitest run tests/sandbox/e2e",
"test:watch": "vitest",
"format": "prettier --write 'src/**/*.ts'"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"keywords": [
"hyperbrowser",
"browser",
"automation",
"webscraping",
"webcrawling",
"scraping",
"crawling",
"ai"
],
"dependencies": {
"form-data": "^4.0.1",
"node-fetch": "2.7.0",
"ws": "^8.19.0",
"zod": "^4.1.12",
"zod-to-json-schema": "^3.25.0"
},
"devDependencies": {
"@types/node": "^22.9.1",
"@types/node-fetch": "^2.6.4",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"dotenv": "^17.3.1",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"vitest": "^4.0.18"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./types": {
"types": "./dist/types/index.d.ts",
"default": "./dist/types/index.js"
},
"./tools": {
"types": "./dist/tools/index.d.ts",
"default": "./dist/tools/index.js"
}
},
"typesVersions": {
"*": {
"types": [
"./dist/types/index.d.ts"
],
"tools": [
"./dist/tools/index.d.ts"
]
}
}
}