-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 866 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 866 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
30
31
32
33
34
{
"name": "nanoagent",
"version": "0.1.0",
"description": "Ephemeral, least-privilege agent runner with scoped tools and progressive skill loading",
"type": "module",
"bin": {
"nanoagent": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/cli.js",
"test": "npm run build && node --test dist/tests/**/*.test.js"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@mariozechner/pi-agent-core": "^0.55.3",
"@mariozechner/pi-ai": "^0.55.3",
"@modelcontextprotocol/sdk": "^1.27.1",
"@sinclair/typebox": "^0.34.14",
"glob": "^11.0.1",
"minimatch": "^10.2.4",
"minimist": "^1.2.8",
"smol-toml": "^1.3.1"
},
"devDependencies": {
"@types/minimist": "^1.2.5",
"@types/node": "^22.13.5",
"typescript": "^5.7.3"
},
"license": "MIT"
}