forked from Life-Atlas/lpi-developer-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 713 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 713 Bytes
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
{
"name": "lpi-developer-kit",
"version": "1.0.0",
"description": "LPI Sandbox — Build AI agents on the Life Programmable Interface",
"type": "module",
"bin": {
"lpi-sandbox": "./dist/src/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/src/index.js",
"test-client": "npm run build && node dist/test-client.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.28.0",
"express": "^5.2.1",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.7.0"
},
"engines": {
"node": ">=18.0.0"
},
"author": "WINNIIO / LifeAtlas <nicolas@lifeatlas.online>",
"license": "MIT"
}