-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.76 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
{
"name": "@getnodus/context",
"version": "0.1.1",
"description": "Personal context layer for AI agents. Your memory, portable across every agent you use.",
"license": "MIT",
"author": "Nodus (https://github.com/getnodus)",
"homepage": "https://github.com/getnodus/context#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/getnodus/context.git"
},
"bugs": {
"url": "https://github.com/getnodus/context/issues"
},
"keywords": [
"mcp",
"model-context-protocol",
"ai",
"agents",
"context",
"memory",
"claude",
"cursor",
"codex",
"windsurf",
"cline",
"zed",
"nodus"
],
"type": "module",
"bin": {
"context": "./dist/cli/index.js",
"context-mcp": "./dist/mcp/server.js",
"context-server": "./dist/server/bin.js"
},
"files": [
"dist",
"assets",
"README.md",
"AGENTS.md",
"PROTOCOL.md",
"CHANGELOG.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"typecheck": "tsc --noEmit",
"test": "pnpm build && node --import tsx --test test/*.test.ts",
"test:coverage": "pnpm build && node --import tsx --test --experimental-test-coverage test/*.test.ts",
"start:mcp": "node dist/mcp/server.js",
"build:mcpb": "node scripts/build-mcpb.mjs",
"prepublishOnly": "pnpm build && pnpm test && pnpm build:mcpb"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"bonjour-service": "^1.4.0",
"gray-matter": "^4.0.3",
"yaml": "^2.6.0",
"zod": "^4.0.0"
},
"devDependencies": {
"@types/node": "^25.9.1",
"tsx": "^4.22.4",
"typescript": "^6.0.3"
},
"engines": {
"node": ">=20"
},
"packageManager": "pnpm@10.34.3",
"publishConfig": {
"access": "public"
}
}