-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.74 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
{
"name": "screenpool",
"version": "0.7.0",
"description": "Lightweight in-process rendering pool for Node.js — screenshots and PDFs via a fixed Chromium worker pool",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./http": {
"types": "./dist/http/createScreenPoolServer.d.ts",
"import": "./dist/http/createScreenPoolServer.js"
},
"./mcp": {
"types": "./dist/mcp/index.d.ts",
"import": "./dist/mcp/index.js"
}
},
"bin": {
"screenpool": "dist/cli.js",
"screenpool-mcp": "dist/mcp-cli.js"
},
"files": [
"dist"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsup",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"benchmark": "tsx scripts/benchmark.ts",
"benchmark:diagnostics": "tsx scripts/benchmark-diagnostics.ts",
"docker:build": "docker compose build",
"docker:up": "docker compose up -d",
"docker:down": "docker compose down",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@hono/node-server": "^1.19.17",
"@modelcontextprotocol/sdk": "^1.30.0",
"@puppeteer/browsers": "^3.2.1",
"hono": "^4.13.4",
"pipsel": "^0.0.7",
"puppeteer-core": "^25.8.0",
"unitup": "^0.1.5",
"yargs": "^18.0.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": "^22.13.0",
"@types/yargs": "^17.0.35",
"tsup": "^8.4.0",
"tsx": "^4.19.0",
"typescript": "^5.8.0",
"vitest": "^3.0.0"
},
"keywords": [
"puppeteer",
"screenshot",
"pdf",
"chromium",
"headless",
"render-pool"
],
"license": "MIT"
}