-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 2.86 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 2.86 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "work-memory-mcp",
"version": "0.1.1",
"description": "Claude와 Cursor AI 간 업무 컨텍스트 공유를 위한 MCP 서버 - 통신 안정성 개선 및 로그 최적화",
"main": "dist/index.js",
"type": "module",
"bin": {
"work-memory-mcp": "./bin/work-memory-mcp.js"
},
"files": [
"dist/**/*",
"bin/**/*",
"docs/**/*",
"README.md",
"LICENSE"
],
"scripts": {
"test:e2e": "vitest run --config ./vitest.config.ts --project e2e",
"test:performance": "vitest run --config ./vitest.config.ts --project performance",
"prebuild": "npm run clean",
"build": "tsc",
"start": "node dist/index.js",
"clean": "rimraf dist",
"dev": "tsc --watch",
"test": "vitest",
"test:unit": "vitest run tests/unit",
"test:integration": "vitest run tests/integration",
"test:regression": "vitest run tests/integration/regression-testing.test.ts",
"test:compatibility": "vitest run tests/integration/backward-compatibility.test.ts",
"test:importance-score": "vitest run tests/tools/importance-score-system.test.ts",
"test:coverage": "vitest --coverage",
"test:watch": "vitest --watch",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"prepublishOnly": "npm run build && npm test",
"prepack": "npm run build",
"postinstall": "node scripts/postinstall.js",
"setup": "node scripts/setup.js",
"version": "npm run build && git add .",
"postversion": "git push && git push --tags"
},
"keywords": [
"mcp",
"model-context-protocol",
"memory",
"context",
"ai",
"claude",
"cursor",
"typescript",
"productivity",
"workflow",
"context-sharing"
],
"author": {
"name": "AI Development Team",
"email": "dev@example.com",
"url": "https://github.com/your-repo/work-memory-mcp"
},
"license": "MIT",
"homepage": "https://github.com/your-repo/work-memory-mcp#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/your-repo/work-memory-mcp.git"
},
"bugs": {
"url": "https://github.com/your-repo/work-memory-mcp/issues"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"@types/uuid": "^10.0.0",
"sqlite3": "^5.1.7",
"uuid": "^11.1.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/sqlite3": "^3.1.11",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitest/coverage-v8": "^2.0.0",
"eslint": "^9.0.0",
"rimraf": "^6.0.0",
"typescript": "^5.0.0",
"vitest": "^2.0.0"
},
"peerDependencies": {
"node": ">=18.0.0"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"os": [
"darwin",
"linux",
"win32"
],
"cpu": [
"x64",
"arm64"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}