-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.21 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.21 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "nostr-bray",
"version": "0.0.0",
"description": "Trust-aware Nostr for AI and humans. Three dimensions of trust -- verification, proximity, and access -- woven into every interaction.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"nostr-bray": "./dist/cli.js"
},
"files": [
"dist",
"dist/widgets",
"LICENSE",
"llms.txt",
"llms-full.txt"
],
"scripts": {
"build": "tsc && node scripts/build-widgets.mjs",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"lint": "tsc --noEmit",
"start": "node dist/index.js"
},
"keywords": [
"nostr",
"mcp",
"trust",
"web-of-trust",
"identity",
"verification",
"signet",
"dominion",
"encrypted",
"access-control",
"privacy",
"lightning",
"nip-46",
"nsec-tree",
"ring-signatures",
"attestations"
],
"repository": {
"type": "git",
"url": "https://github.com/forgesworn/bray.git"
},
"homepage": "https://github.com/forgesworn/bray#readme",
"license": "MIT",
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github"
]
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@forgesworn/range-proof": "^1.0.3",
"@forgesworn/ring-sig": "^1.0.2",
"@forgesworn/shamir-words": "^1.0.4",
"@modelcontextprotocol/ext-apps": "^1.3.1",
"@modelcontextprotocol/sdk": "^1.27.1",
"canary-kit": "^2.6.2",
"dominion-protocol": "^0.1.0",
"nostr-attestations": "^2.2.0",
"nostr-tools": "^2.23.3",
"nostr-veil": "^0.1.0",
"nsec-tree": "^1.4.2",
"signet-protocol": "^0.1.0",
"socks-proxy-agent": "^9.0.0",
"spoken-token": "^2.0.3",
"ws": "^8.20.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^25.5.0",
"@types/ws": "^8.18.1",
"@vitest/coverage-v8": "^4.1.1",
"semantic-release": "^25.0.3",
"typescript": "^6.0.2",
"vitest": "^4.1.1"
}
}