-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.55 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.55 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "human-context-protocol",
"version": "1.0.0",
"description": "Human Context Protocol - MCP Server for Decentralized Maieutic Elicitation with PKI and Blockchain Coordination",
"main": "index.js",
"type": "module",
"bin": {
"human-context-protocol": "./build/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc && chmod 755 build/index.js",
"dev": "tsc --watch",
"start": "node build/index.js",
"init-whitelist": "npm run build && node build/scripts/init-whitelist.js",
"test-crypto": "npm run build && node build/scripts/test-crypto.js",
"test-keyring": "npm run build && node build/scripts/test-keyring.js",
"test-ss58": "npm run build && node build/scripts/test-ss58.js",
"test-elicitation": "npm run build && node build/scripts/test-elicitation.js",
"test-elicitation-tool": "npm run build && node build/scripts/test-elicitation-tool.js",
"test-mcp-helia": "npm run build && node build/scripts/test-mcp-helia.js",
"kill-helia": "./scripts/kill-helia-ports.sh"
},
"files": [
"build"
],
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@chainsafe/libp2p-gossipsub": "^14.1.1",
"@chainsafe/libp2p-noise": "^16.1.4",
"@chainsafe/libp2p-yamux": "^7.0.4",
"@dedot/api": "^0.15.0",
"@helia/block-brokers": "^3.0.4",
"@helia/interface": "^4.3.0",
"@helia/routers": "^3.1.3",
"@helia/unixfs": "^3.0.7",
"@libp2p/autonat": "^2.0.38",
"@libp2p/bootstrap": "^11.0.46",
"@libp2p/circuit-relay-v2": "^3.2.24",
"@libp2p/crypto": "^5.1.7",
"@libp2p/identify": "^3.0.38",
"@libp2p/interface": "^2.10.5",
"@libp2p/kad-dht": "^15.1.11",
"@libp2p/mdns": "^11.0.47",
"@libp2p/peer-id": "^5.1.8",
"@libp2p/ping": "^2.0.37",
"@libp2p/pubsub-peer-discovery": "^11.0.2",
"@libp2p/tcp": "^10.1.18",
"@libp2p/upnp-nat": "^3.1.22",
"@libp2p/websockets": "^9.2.19",
"@modelcontextprotocol/sdk": "^1.17.0",
"@noble/ciphers": "^1.3.0",
"@noble/curves": "^1.9.7",
"@noble/hashes": "^1.8.0",
"@polkadot/keyring": "^13.5.5",
"@polkadot/util-crypto": "^13.5.5",
"@types/mime-types": "^3.0.1",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"blockstore-fs": "^2.0.4",
"blockstore-level": "^2.0.5",
"dedot": "^0.15.0",
"dotenv": "^17.2.1",
"helia": "^5.5.1",
"level": "^10.0.0",
"libp2p": "^2.9.0",
"mime-types": "^3.0.1",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/node": "^24.1.0",
"typescript": "^5.8.3"
}
}