-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.07 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.07 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
{
"name": "pi-enclave",
"version": "0.3.1",
"description": "VM-isolated sandbox for pi with automatic secret protection · from yapp",
"author": "mgabor3141",
"license": "MIT",
"repository": {
"url": "git+https://github.com/mgabor3141/yapp.git",
"directory": "packages/enclave"
},
"keywords": [
"pi-package",
"pi-extension",
"yapp"
],
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"templates",
"README.md"
],
"scripts": {
"build": "tsup"
},
"pi": {
"extensions": [
"dist/index.js"
]
},
"dependencies": {
"@earendil-works/gondolin": "^0.6.0",
"graphql": "^16.13.1",
"smol-toml": "^1.6.0",
"valibot": "^1.2.0"
},
"peerDependencies": {
"@mariozechner/pi-coding-agent": "*"
},
"devDependencies": {
"@mariozechner/pi-coding-agent": "^0.63.0",
"@types/node": "^25.3.5",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
}
}