package.json•2.11 kB
{
"name": "zettel-memory",
"version": "0.0.1",
"description": "Zettel Memory (Olima + Basic-Memory + Zettelkasten + PARA) - 로컬 퍼시스턴트 메모리를 MCP 서버로 노출",
"private": true,
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "tsc --build",
"dev": "npm run dev --workspaces",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:unit": "jest --testPathPattern='__tests__/unit'",
"test:integration": "jest --testPathPattern='__tests__/integration'",
"test:e2e": "jest --testPathPattern='__tests__/e2e'",
"test:performance": "jest --testPathPattern='__tests__/performance' --runInBand --testTimeout=300000",
"test:mcp": "npm run test:e2e",
"lint": "eslint packages/*/src/**/*.ts",
"lint:fix": "eslint packages/*/src/**/*.ts --fix",
"typecheck": "tsc --build",
"clean": "npm run clean --workspaces && tsc --build --clean",
"start": "node packages/mcp-server/dist/index.js",
"validate:mcp": "./scripts/validate-mcp.sh",
"validate:inspector": "npx @modelcontextprotocol/inspector node packages/mcp-server/dist/cli.js"
},
"devDependencies": {
"@modelcontextprotocol/inspector": "^0.15.0",
"@types/jest": "^29.5.8",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"prettier": "^3.1.0",
"ts-jest": "^29.1.1",
"typescript": "^5.3.2"
},
"keywords": [
"memory",
"mcp",
"zettelkasten",
"para",
"markdown",
"sqlite",
"fts5",
"knowledge-management"
],
"author": "Zettel Memory Project",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/inchankang/zettel-memory.git"
},
"bugs": {
"url": "https://github.com/inchankang/zettel-memory/issues"
},
"homepage": "https://github.com/inchankang/zettel-memory#readme"
}