This repository was archived by the owner on Feb 23, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.7 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.7 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
{
"name": "@loominal/pattern",
"version": "0.1.0",
"description": "MCP server for hierarchical agent memory",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"pattern": "dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"prepublishOnly": "npm run build && npm run test"
},
"keywords": [
"loominal",
"pattern",
"mcp",
"nats",
"memory",
"agent",
"claude",
"ai",
"hierarchical-memory",
"multi-agent"
],
"author": "Michael LoPresti <mike@lopresti.org>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/loominal/pattern.git"
},
"homepage": "https://github.com/loominal/pattern#readme",
"bugs": {
"url": "https://github.com/loominal/pattern/issues"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"nats": "^2.28.2",
"nats.ws": "^1.30.3",
"uuid": "^11.0.3",
"ws": "^8.18.3",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@types/uuid": "^10.0.0",
"@types/ws": "^8.5.13",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"@vitest/coverage-v8": "^2.1.8",
"eslint": "^9.16.0",
"prettier": "^3.4.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"files": [
"dist",
"README.md",
"LICENSE"
]
}