-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 1.43 KB
/
package.json
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
{
"name": "@cyanheads/toolkit-mcp-server",
"version": "1.0.1",
"description": "MCP server providing system, network, geolocation, generator, datetime, and security tools",
"type": "module",
"main": "build/index.js",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/cyanheads/toolkit-mcp-server.git"
},
"scripts": {
"build": "tsc && chmod +x build/index.js",
"start": "node build/index.js",
"dev": "ts-node --esm src/index.ts",
"clean": "rm -rf build",
"rebuild": "npm run clean && npm run build",
"lint": "tsc --noEmit",
"prepare": "npm run build"
},
"bin": {
"toolkit-mcp-server": "./build/index.js"
},
"keywords": [
"mcp",
"server",
"toolkit",
"system",
"network",
"geolocation",
"generator",
"datetime",
"security"
],
"author": "cyanheads",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/cyanheads/toolkit-mcp-server/issues"
},
"homepage": "https://github.com/cyanheads/toolkit-mcp-server#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "latest",
"@types/luxon": "latest",
"@types/node": "latest",
"luxon": "latest",
"qrcode": "latest",
"qrcode-terminal": "^0.12.0",
"typescript": "latest"
},
"devDependencies": {
"@types/qrcode": "latest",
"ts-node": "latest"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}