-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.94 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 1.94 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@sionic-ai/pi-justbash-sandbox",
"version": "0.0.0",
"private": true,
"description": "Sandboxed bash, read, write, and edit tools for pi-coding-agent backed by just-bash",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsgo -p tsconfig.build.json",
"dev": "tsgo -p tsconfig.build.json --watch",
"typecheck": "tsgo --noEmit",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"clean": "rm -rf dist coverage",
"prepublishOnly": "node -e \"console.error('pi-justbash-sandbox is not distributed via npm. See README.md (Install).'); process.exit(1)\""
},
"dependencies": {
"just-bash": "^3.0.1"
},
"peerDependencies": {
"@earendil-works/pi-coding-agent": ">=0.75.1"
},
"devDependencies": {
"@biomejs/biome": "^2.4.12",
"@earendil-works/pi-coding-agent": "^0.75.1",
"@types/node": "^22.15.3",
"@typescript/native-preview": "^7.0.0-dev.20260419.1",
"@vitest/coverage-v8": "^4.1.4",
"typescript": "^5.8.3",
"vitest": "^4.1.4",
"@earendil-works/pi-agent-core": ">=0.75.1",
"@sinclair/typebox": "^0.32.0"
},
"engines": {
"node": ">=22.19.0",
"pnpm": ">=9",
"bun": ">=1.1"
},
"repository": {
"type": "git",
"url": "https://github.com/sionic-ai/pi-justbash-sandbox.git"
},
"license": "MIT",
"keywords": [
"pi",
"pi-mono",
"pi-coding-agent",
"pi-package",
"sandbox",
"just-bash",
"bash"
],
"pi": {
"extensions": ["./dist/entry-pi.js"]
},
"pnpm": {
"onlyBuiltDependencies": [
"@mongodb-js/zstd",
"koffi",
"node-liblzma",
"protobufjs"
]
}
}