-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.92 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.92 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
{
"name": "@nebula-agents/electron-mcp",
"version": "0.1.0",
"description": "Embedded MCP server for Electron apps.",
"license": "MIT",
"author": "Agent Labs",
"homepage": "https://github.com/agent-labs-dev/electron-mcp#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/agent-labs-dev/electron-mcp.git"
},
"bugs": {
"url": "https://github.com/agent-labs-dev/electron-mcp/issues"
},
"type": "module",
"files": [
"dist",
"README.md",
"LICENSE"
],
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
},
"./types": {
"types": "./dist/types.d.mts",
"import": "./dist/types.mjs"
}
},
"main": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"sideEffects": false,
"scripts": {
"build": "tsdown",
"check": "pnpm run lint && pnpm run typecheck && pnpm run test && pnpm run build",
"format": "biome format --write .",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"test": "vitest run",
"test:electron": "pnpm run build && playwright test -c test/electron/playwright.config.ts",
"typecheck": "tsc --noEmit"
},
"keywords": [
"electron",
"mcp",
"model-context-protocol",
"cdp",
"automation"
],
"peerDependencies": {
"@modelcontextprotocol/sdk": ">=1.29.0 <2",
"electron": ">=41 <42",
"zod": ">=4 <5"
},
"devDependencies": {
"@biomejs/biome": "^2.4.12",
"@changesets/cli": "^2.29.7",
"@modelcontextprotocol/sdk": "^1.29.0",
"@playwright/test": "^1.57.0",
"@types/node": "^24.9.0",
"electron": "^41.2.1",
"playwright": "^1.57.0",
"tsdown": "^0.21.9",
"typescript": "^6.0.3",
"vitest": "4.1.5",
"zod": "^4.3.6"
},
"dependencies": {
"async-mutex": "^0.5.0"
},
"packageManager": "pnpm@10.19.0",
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public"
}
}