-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 888 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 888 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
{
"name": "webflow-mcp-server",
"version": "1.0.1",
"bin": "dist/index.js",
"license": "MIT",
"files": [
"dist"
],
"scripts": {
"start": "concurrently \"npm run dev:local\" \"npm run inspector:local\"",
"dev:local": "npm run build:watch",
"inspector:local": "npx @modelcontextprotocol/inspector -- nodemon --env-file=.env -q --watch dist dist/index.js",
"build": "tsup src/index.ts",
"build:watch": "tsup src/index.ts --watch"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.25.2",
"cors": "^2.8.5",
"express": "^5.1.0",
"socket.io": "^4.8.1",
"webflow-api": "3.2.1",
"zod": "3.25.76"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/node": "^22.13.13",
"concurrently": "^9.1.2",
"nodemon": "^3.1.9",
"tsup": "^8.4.0",
"typescript": "^5.8.2"
}
}