-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.16 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.16 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
{
"name": "relatr",
"description": "Decentralized trust metric service for the Nostr ecosystem that computes personalized trust scores from the unique perspective of a public key",
"version": "0.2.9",
"type": "module",
"private": true,
"workspaces": [
".",
"relo"
],
"scripts": {
"start": "bun run manager.ts",
"mcp": "bun run src/mcp/server.ts",
"lint": "eslint src/",
"typecheck": "tsc --noEmit --project tsconfig.typecheck.json",
"format": "prettier --write ./src",
"generate:version": "bun run scripts/generate-version.ts",
"check:version": "bun run scripts/check-version.ts",
"build": "bun build ./src/mcp/server.ts --outdir ./dist --target bun --external \"@duckdb/node-api\" --external \"@duckdb/node-bindings-*\"",
"compile": "bun build --compile --minify --sourcemap ./src/mcp/server.ts --outfile relatr --external \"@duckdb/node-api\" --external \"@duckdb/node-bindings-*\""
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@changesets/cli": "^2.30.0",
"@types/bun": "latest",
"@types/luxon": "^3.7.1",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.8.1",
"typescript-eslint": "^8.58.0"
},
"peerDependencies": {
"typescript": "^5.9.3"
},
"dependencies": {
"@contextvm/elo": "^0.10.4",
"@contextvm/sdk": "^0.11",
"@modelcontextprotocol/sdk": "^1.29.0",
"@duckdb/node-api": "^1.5.2-r.1",
"applesauce-core": "^5.2.0",
"applesauce-relay": "^5.2.0",
"json-canonicalize": "^2.0.0",
"luxon": "^3.7.2",
"nostr-social-duck": "^0.1.25",
"nostr-tools": "^2.23.3",
"process-pastry": "https://github.com/hzrd149/process-pastry",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"rxjs": "^7.8.2",
"@contextvm/relo": "^0.1.3",
"zod": "^4.3.6"
},
"optionalDependencies": {
"@duckdb/node-bindings-linux-x64": "^1.5.2-r.1",
"@duckdb/node-bindings-linux-arm64": "^1.5.2-r.1",
"@duckdb/node-bindings-darwin-x64": "^1.5.2-r.1",
"@duckdb/node-bindings-darwin-arm64": "^1.5.2-r.1",
"@duckdb/node-bindings-win32-x64": "^1.5.2-r.1"
}
}