-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 739 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 739 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
{
"name": "mcp-atom",
"version": "0.1.0",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node index.js",
"start:inspect": "set DANGEROUSLY_OMIT_AUTH=true && npx @modelcontextprotocol/inspector npm start",
"start:http": "TRANSPORT=http node index.js",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"test:coverage": "NODE_OPTIONS=--experimental-vm-modules jest --coverage"
},
"author": "Brian Shannon",
"license": "MIT",
"description": "Kitchen sink for MCP-Atom",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.23.0",
"cors": "^2.8.5",
"express": "^5.1.0",
"scribbles": "^1.6.0",
"zod": "^3.22.4"
},
"devDependencies": {
"jest": "^29.7.0"
}
}