-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.84 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.84 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
{
"name": "@saiden/browse",
"version": "0.4.0",
"description": "Headless browser automation for Claude Code using Playwright WebKit",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"browse": "dist/cli.js",
"browse-mcp": "dist/mcp.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/cli.js",
"lint": "biome lint src/",
"lint:fix": "biome lint --write src/",
"format": "biome format src/",
"format:fix": "biome format --write src/",
"check": "biome check src/",
"fix": "biome check --write src/",
"typecheck": "tsc --noEmit",
"test:unit": "vitest run --coverage --passWithNoTests",
"test:integration": "vitest run --coverage --config vitest.integration.config.ts",
"test:watch": "vitest",
"test:all": "vitest run --coverage --config vitest.all.config.ts",
"test": "npm run fix && npm run typecheck && npm run test:all && npm run build",
"coverage": "npm run test:all && open coverage/index.html",
"prepublishOnly": "npm run build"
},
"keywords": [
"playwright",
"webkit",
"browser",
"automation",
"claude",
"headless",
"mcp",
"model-context-protocol"
],
"author": "aladac",
"license": "BUSL-1.1",
"repository": {
"type": "git",
"url": "git+https://github.com/saiden-dev/browse.git"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.26.0",
"chalk": "^5.6.2",
"log-symbols": "^7.0.1",
"playwright": "^1.41.0",
"sharp": "^0.34.5"
},
"devDependencies": {
"@biomejs/biome": "^1.9.0",
"@types/node": "^25.6.0",
"@types/sharp": "^0.31.1",
"@vitest/coverage-v8": "^4.0.18",
"tsx": "^4.21.0",
"typescript": "^5.3.0",
"vitest": "^4.0.18"
},
"files": [
"dist",
"README.md"
]
}