-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 727 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 727 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
35
36
37
38
39
40
{
"name": "pi-agentos",
"version": "0.1.0",
"description": "AgentOS profile runtime for pi-link sessions.",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ch0udry/pi-agentos.git"
},
"keywords": [
"pi-package",
"pi",
"agentos",
"pi-link"
],
"files": [
"index.ts",
"src/",
"agents/",
"README.md",
"LICENSE"
],
"scripts": {
"test": "node --test test/*.test.mjs",
"build": "echo 'nothing to build'",
"check": "npm test"
},
"dependencies": {
"yaml": "^2.8.1"
},
"peerDependencies": {
"@earendil-works/pi-coding-agent": "*"
},
"pi": {
"extensions": [
"./index.ts"
]
}
}