-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 943 Bytes
/
package.json
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
{
"name": "mcp-pif",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "node build/index.js",
"dev": "tsc -w",
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rimraf build",
"rebuild": "npm run clean && npm run build",
"preinstall": "npm install -g rimraf",
"docs:serve": "npx http-server home/meta/docs -o",
"update-structure": "node scripts/update-structure.js"
},
"keywords": [
"mcp",
"pif",
"claude",
"context"
],
"author": "",
"license": "ISC",
"description": "Model Context Protocol implementation for the Personal Intelligence Framework",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.3.2",
"simple-git": "^3.27.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/node": "^22.10.7",
"@types/vscode": "^1.85.0",
"typescript": "^5.7.3"
}
}