-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.32 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.32 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
80
81
82
83
84
{
"name": "browserless-mcp",
"version": "1.3.4",
"description": "MCP (Model Context Protocol) server for the Browserless.io browser automation platform",
"author": "browserless.io",
"license": "SSPL-1.0",
"type": "module",
"main": "./build/src/index.js",
"types": "./build/src/index.d.ts",
"bin": {
"browserless-mcp": "./bin/cli.js"
},
"exports": {
".": {
"types": "./build/src/index.d.ts",
"import": "./build/src/index.js"
}
},
"files": [
"build/src/**/*.js",
"build/src/**/*.d.ts",
"bin/*",
"README.md"
],
"scripts": {
"build": "tsc && npm run build:skills",
"build:skills": "mkdir -p build/src/skills && cp src/skills/*.md build/src/skills/",
"clean": "rm -rf build",
"dev": "BROWSERLESS_TOKEN=${BROWSERLESS_TOKEN:-test} node --watch build/src/index.js",
"lint": "eslint src test",
"test": "npm run build && mocha",
"coverage": "npm run build && c8 --reporter=text --reporter=html --reporter=lcov --check-coverage --lines 80 --branches 70 --functions 80 mocha",
"start": "node build/src/index.js",
"start:http": "TRANSPORT=httpStream PORT=8080 node build/src/index.js",
"prepack": "npm run build",
"postinstall": "patch-package",
"prepare": "husky",
"prettier": "prettier '{src,test,bin,.github}/**/*.{js,ts,json,yml,yaml,md}' --log-level error --write"
},
"prettier": {
"semi": true,
"trailingComma": "all",
"singleQuote": true,
"printWidth": 80
},
"dependencies": {
"@aws-sdk/client-sqs": "^3.1049.0",
"fastmcp": "^4.0.0",
"ioredis": "^5.10.1",
"ws": "^8.20.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/chai": "^5.2.2",
"@types/ioredis-mock": "^8.2.7",
"@types/mocha": "^10.0.10",
"@types/node": "^25.9.1",
"@types/sinon": "^21.0.1",
"@types/ws": "^8.18.1",
"c8": "^11.0.0",
"chai": "^6.2.2",
"eslint": "^10.4.0",
"globals": "^17.6.0",
"husky": "^9.1.7",
"ioredis-mock": "^8.13.1",
"mocha": "^11.1.0",
"patch-package": "^8.0.1",
"prettier": "^3.8.3",
"sinon": "^22.0.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.4"
},
"engines": {
"node": ">=24"
},
"overrides": {
"mocha": {
"diff": "^8.0.3",
"minimatch": "^10.2.1",
"glob": "^11.0.0"
}
}
}