-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.52 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.52 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
{
"name": "memtask",
"version": "2.2.0",
"description": "Memory and task management MCP Server with Goal-Task-Memory architecture",
"bin": {
"memtask": "./dist/src/index.js"
},
"type": "commonjs",
"main": "./dist/src/index.js",
"scripts": {
"start": "node ./dist/src/index.js",
"build": "tsc",
"dev": "ts-node src/index.ts",
"watch": "tsc --watch",
"clean": "rimraf dist",
"lint": "eslint src --ext .ts",
"test": "jest",
"prepare": "npm run build",
"prepublishOnly": "npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KNChiu/MemTask.git"
},
"bugs": {
"url": "https://github.com/KNChiu/MemTask/issues"
},
"homepage": "https://github.com/KNChiu/MemTask#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0",
"ws": "^8.18.2"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"jest": "^29.5.0",
"rimraf": "^5.0.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=16.0.0"
},
"keywords": [
"mcp",
"mcp-server",
"model-context-protocol",
"memory",
"task-management",
"goal-tracking",
"context",
"ai-tools",
"claude",
"semantic-search"
],
"files": [
"dist/",
"README.md",
"LICENSE"
],
"author": "KNChiu",
"license": "MIT"
}