-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 993 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 993 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
36
37
38
39
40
{
"name": "floorp-mcp-server",
"version": "0.1.1",
"description": "MCP Server bridge for Floorp Server",
"type": "module",
"bin": {
"floorp-mcp-server": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"test:client": "tsx test/test-client.ts"
},
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/Floorp-Projects/floorp-mcp-server.git"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.1",
"node-fetch": "^3.3.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^20.12.7",
"@types/node-fetch": "^2.6.11",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5.4.5"
}
}