-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.65 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.65 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
{
"name": "@tangle-network/browser-farm",
"version": "0.1.0",
"description": "Session-scoped browser allocation service. Unified API over Browserless, Playwright, Appium, and native drivers.",
"repository": {
"type": "git",
"url": "https://github.com/tangle-network/browser-farm.git"
},
"keywords": [
"browser",
"automation",
"playwright",
"selenium",
"appium",
"safari",
"ios",
"android",
"cdp",
"webdriver"
],
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./client": {
"import": "./dist/client.js",
"types": "./dist/client.d.ts"
}
},
"bin": {
"browser-farm": "dist/main.js"
},
"files": [
"dist",
"docker-compose.yml",
"Dockerfile"
],
"scripts": {
"dev": "tsx watch src/main.ts",
"build": "tsc",
"start": "node dist/main.js",
"test": "vitest run",
"test:integration": "vitest run --config vitest.integration.config.ts",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"lint": "tsc --noEmit",
"prepublishOnly": "pnpm run build",
"docker:up": "docker compose up -d",
"docker:down": "docker compose down"
},
"license": "MIT",
"packageManager": "pnpm@10.22.0",
"dependencies": {
"@hono/node-server": "^1.19.11",
"hono": "^4.12.5",
"ws": "^8.19.0"
},
"devDependencies": {
"@types/node": "^25.3.5",
"@types/ws": "^8.18.1",
"@vitest/coverage-v8": "^4.0.18",
"playwright": "^1.58.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}