mirror of
https://github.com/samvallad33/vestige.git
synced 2026-05-09 15:52:37 +02:00
75 lines
1.7 KiB
JSON
75 lines
1.7 KiB
JSON
|
|
{
|
||
|
|
"name": "@vestige/core",
|
||
|
|
"version": "0.3.0",
|
||
|
|
"description": "Cognitive memory for AI - FSRS-5, dual-strength, sleep consolidation",
|
||
|
|
"type": "module",
|
||
|
|
"main": "dist/index.js",
|
||
|
|
"types": "dist/index.d.ts",
|
||
|
|
"exports": {
|
||
|
|
".": {
|
||
|
|
"types": "./dist/index.d.ts",
|
||
|
|
"import": "./dist/index.js"
|
||
|
|
},
|
||
|
|
"./fsrs": {
|
||
|
|
"types": "./dist/core/fsrs.d.ts",
|
||
|
|
"import": "./dist/core/fsrs.js"
|
||
|
|
},
|
||
|
|
"./database": {
|
||
|
|
"types": "./dist/core/database.d.ts",
|
||
|
|
"import": "./dist/core/database.js"
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"bin": {
|
||
|
|
"vestige": "./dist/cli.js"
|
||
|
|
},
|
||
|
|
"scripts": {
|
||
|
|
"build": "tsup",
|
||
|
|
"dev": "tsup --watch",
|
||
|
|
"start": "node dist/index.js",
|
||
|
|
"inspect": "npx @anthropic-ai/mcp-inspector node dist/index.js",
|
||
|
|
"test": "rstest",
|
||
|
|
"lint": "eslint src --ext .ts",
|
||
|
|
"typecheck": "tsc --noEmit"
|
||
|
|
},
|
||
|
|
"keywords": [
|
||
|
|
"mcp",
|
||
|
|
"memory",
|
||
|
|
"cognitive-science",
|
||
|
|
"fsrs",
|
||
|
|
"spaced-repetition",
|
||
|
|
"knowledge-management",
|
||
|
|
"second-brain",
|
||
|
|
"ai",
|
||
|
|
"claude"
|
||
|
|
],
|
||
|
|
"author": "samvallad33",
|
||
|
|
"license": "MIT",
|
||
|
|
"dependencies": {
|
||
|
|
"@modelcontextprotocol/sdk": "^1.0.0",
|
||
|
|
"better-sqlite3": "^11.0.0",
|
||
|
|
"chokidar": "^3.6.0",
|
||
|
|
"chromadb": "^1.9.0",
|
||
|
|
"date-fns": "^3.6.0",
|
||
|
|
"glob": "^10.4.0",
|
||
|
|
"gray-matter": "^4.0.3",
|
||
|
|
"marked": "^12.0.0",
|
||
|
|
"nanoid": "^5.0.7",
|
||
|
|
"natural": "^6.12.0",
|
||
|
|
"node-cron": "^3.0.3",
|
||
|
|
"ollama": "^0.5.0",
|
||
|
|
"p-limit": "^6.0.0",
|
||
|
|
"zod": "^3.23.0"
|
||
|
|
},
|
||
|
|
"devDependencies": {
|
||
|
|
"@rstest/core": "^0.8.0",
|
||
|
|
"@types/better-sqlite3": "^7.6.10",
|
||
|
|
"@types/node": "^20.14.0",
|
||
|
|
"@types/node-cron": "^3.0.11",
|
||
|
|
"tsup": "^8.1.0",
|
||
|
|
"typescript": "^5.4.5"
|
||
|
|
},
|
||
|
|
"engines": {
|
||
|
|
"node": ">=20.0.0"
|
||
|
|
}
|
||
|
|
}
|