-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.54 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.54 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
{
"name": "orchords-web-pilot",
"version": "0.1.0",
"private": false,
"description": "Orchords Web Pilot — MCP server that lets coding agents drive a real browser.",
"type": "module",
"bin": {
"orchords-web-pilot": "./dist/cli.js"
},
"main": "./dist/server.js",
"files": [
"dist",
"README.md",
"LICENSE",
"SECURITY.md"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "tsx watch src/cli.ts",
"start": "node dist/cli.js",
"lint": "eslint \"src/**/*.ts\"",
"format": "prettier --check \"src/**/*.ts\"",
"test": "node --test --import tsx \"test/**/*.test.ts\"",
"extension:check": "node --test --import tsx test/extension-manifest.test.ts",
"extension:gate": "node --test --import tsx test/extension-manifest.test.ts test/extension-privileged-apis.test.ts test/extension-security-matrix.test.ts test/extension-threat-model.test.ts test/extension-bridge-version-handshake.test.ts test/extension-bridge-backpressure.test.ts test/extension-tab-attachment.test.ts test/extension-content-script.test.ts test/extension-cdp-adapter.test.ts test/extension-side-panel.test.ts test/extension-service-worker-lifecycle.test.ts test/extension-envelope-cancellation.test.ts test/extension-browser-attach.test.ts test/extension-package.test.ts test/extension-e2e-fixture.test.ts test/extension-schema-migrations.test.ts test/extension-artifact-transfer.test.ts test/extension-support-bundle.test.ts test/extension-enterprise-policy.test.ts test/extension-dispatch-gate.test.ts test/extension-site-authorizations.test.ts",
"extension:pack": "node scripts/package-extension.mjs",
"audit": "npm audit --omit=dev --audit-level=high"
},
"engines": {
"node": ">=20.10"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"express": "^5.2.1",
"playwright": "^1.59.1",
"yaml": "^2.9.0",
"zod": "^3.25.76",
"zod-to-json-schema": "^3.25.2"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^22.7.0",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"eslint": "^9.11.0",
"prettier": "^3.3.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0"
},
"keywords": [
"mcp",
"model-context-protocol",
"browser",
"playwright",
"agent",
"orchords",
"web-pilot"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/ORCHORDS/OrchordsBrowserPilot.git"
},
"bugs": {
"url": "https://github.com/ORCHORDS/OrchordsBrowserPilot/issues"
}
}