-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.5 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
{
"name": "spec-memo",
"version": "0.27.2",
"description": "Local working memory for coding agents outside the product repository",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"memo": "./dist/cli.js"
},
"files": [
"dist",
".agents/skills/ws-memo",
".agents/skills/ws-session-tracking",
"README.md"
],
"scripts": {
"prebuild": "node scripts/sync-skill-versions.mjs",
"build": "tsc && node scripts/copy-wiki-template.mjs",
"watch": "tsc -w",
"prepare": "npm run build",
"pretest": "npm run build",
"test": "node --test dist/**/*.test.js",
"build:site": "node scripts/build-site.js",
"check:site": "node scripts/build-site.js --check",
"sync:skill-versions": "node scripts/sync-skill-versions.mjs",
"start": "node dist/mcp.js"
},
"keywords": [
"mcp",
"agent-memory",
"spec-memo",
"context",
"developer-tools"
],
"homepage": "https://github.com/jpolvora/spec-memo",
"repository": {
"type": "git",
"url": "git+https://github.com/jpolvora/spec-memo.git"
},
"bugs": {
"url": "https://github.com/jpolvora/spec-memo/issues"
},
"author": "",
"license": "MIT",
"engines": {
"node": ">=22"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.6.1",
"better-sqlite3": "^13.0.3",
"gray-matter": "^4.0.3",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.12",
"@types/node": "^22.13.9",
"typescript": "^5.7.3"
}
}