-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
134 lines (134 loc) · 4.17 KB
/
Copy pathpackage.json
File metadata and controls
134 lines (134 loc) · 4.17 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "web-pilot",
"version": "0.1.7",
"description": "Open-source agentic browser with Playwright control, BYO model providers, local Ollama, and desktop packaging.",
"license": "GPL-3.0-or-later",
"author": "WebPilot Contributors",
"private": false,
"main": "electron/main.cjs",
"bin": {
"webpilot-mcp": "./bin/mcp-stdio.ts"
},
"scripts": {
"mcp:stdio": "tsx bin/mcp-stdio.ts",
"dev": "next dev --webpack",
"build": "next build --webpack",
"start": "next start",
"lint": "eslint",
"test": "node --import tsx --test tests/tool-schema.test.ts",
"health": "node scripts/health-check.js",
"mcp:cli": "node scripts/mcp-cli.js",
"agent:cli": "node scripts/agent-runner.js",
"agent:e2e": "node scripts/agent-e2e.js",
"browser:smoke": "node scripts/browser-smoke.mjs",
"browsers:install": "node scripts/prepare-playwright-browsers.mjs",
"desktop:dev": "node scripts/electron-dev.mjs",
"desktop:start": "electron .",
"desktop:build:prepare": "npm run build && npm run browsers:install && node scripts/prepare-electron-build.mjs",
"desktop:smoke": "node scripts/desktop-smoke.mjs",
"desktop:build": "npm run desktop:build:unsigned",
"desktop:build:unsigned": "npm run desktop:build:prepare && node scripts/electron-builder-unsigned.mjs --publish never",
"desktop:build:mac": "npm run desktop:build:prepare && node scripts/electron-builder-unsigned.mjs --mac --publish never",
"desktop:build:win": "npm run desktop:build:prepare && node scripts/electron-builder-unsigned.mjs --win --publish never -c.win.signAndEditExecutable=false",
"desktop:build:linux": "npm run desktop:build:prepare && node scripts/electron-builder-unsigned.mjs --linux --publish never",
"desktop:build:signed": "npm run desktop:build:prepare && electron-builder"
},
"dependencies": {
"@google/genai": "^1.38.0",
"@modelcontextprotocol/sdk": "^1.26.0",
"@mozilla/readability": "^0.6.0",
"@playwright/mcp": "^0.0.64",
"@truto/turndown-plugin-gfm": "^1.0.2",
"dotenv": "^17.2.3",
"jsdom": "^27.4.0",
"lucide-react": "^0.577.0",
"next": "^16.1.6",
"playwright": "1.59.0-alpha-1770338664000",
"playwright-core": "^1.58.2",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-markdown": "^10.1.0",
"tsx": "^4.21.0",
"turndown": "^7.2.2",
"zod": "^4.3.6",
"zustand": "^5.0.11"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/jsdom": "^27.0.0",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/turndown": "^5.0.6",
"electron": "^40.8.0",
"electron-builder": "^26.8.1",
"eslint": "^9",
"eslint-config-next": "16.1.4",
"tailwindcss": "^4",
"typescript": "^5"
},
"build": {
"appId": "com.webpilot.desktop",
"productName": "WebPilot",
"electronDist": "node_modules/electron/dist",
"compression": "normal",
"directories": {
"output": "desktop_dist"
},
"files": [
"electron/**/*",
"lib/**/*",
"tsconfig.json",
"package.json"
],
"extraResources": [
{
"from": "assets/app-icon/icon.png",
"to": "icon.png"
},
{
"from": ".playwright-browsers",
"to": "playwright-browsers",
"filter": ["!mcp-chrome", "!mcp-chrome/**"]
},
{
"from": ".next/standalone",
"to": "standalone"
},
{
"from": ".next/standalone/node_modules",
"to": "standalone/node_modules"
},
{
"from": ".next/standalone/.next/node_modules",
"to": "standalone/.next/node_modules"
}
],
"mac": {
"category": "public.app-category.productivity",
"icon": "assets/app-icon/icon.icns",
"signIgnore": [
"(^|[/\\\\])playwright-browsers([/\\\\]|$)",
"(^|[/\\\\])\\.playwright-browsers([/\\\\]|$)"
],
"target": [
"dmg"
]
},
"win": {
"icon": "assets/app-icon/icon.ico",
"target": [
"nsis",
"zip"
]
},
"linux": {
"icon": "assets/app-icon/icon.png",
"category": "Utility",
"target": [
"AppImage",
"zip"
]
}
}
}