-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 872 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 872 Bytes
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
{
"name": "mcp-server-chatgpt-mac-app",
"version": "0.1.0",
"type": "module",
"description": "",
"main": "index.js",
"bin": {
"mcp-server-chatgpt-mac-app": "./build/index.js"
},
"scripts": {
"build": "tsc && chmod +x build/index.js",
"start": "node build/index.js",
"prepublishOnly": "pnpm run build",
"format": "pnpx biome format --write .",
"lint": "pnpx biome lint .",
"check": "pnpx biome check .",
"test": "vitest",
"test:watch": "vitest --watch",
"test:coverage": "vitest --coverage"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.4.1",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.15.1",
"zod": "^3.25.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/node": "^24.0.13",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
}
}