-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.54 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
{
"name": "@bounded-systems/proc",
"version": "0.2.4",
"description": "The one allowed subprocess spawn point, routing external-tool invocations through a capability",
"bounded": {
"tagline": "The one allowed subprocess spawn point, routing external-tool invocations through a capability",
"kind": "door",
"facet": "verb",
"role": "capability-seam",
"domain": "process/spawn"
},
"license": "MIT",
"type": "module",
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/bounded-systems/proc.git"
},
"homepage": "https://github.com/bounded-systems/proc#readme",
"bugs": {
"url": "https://github.com/bounded-systems/proc/issues"
},
"keywords": [
"proc",
"subprocess",
"spawn",
"capability",
"policy",
"seam"
],
"exports": {
".": {
"bun": "./src/index.ts",
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"src",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"prepublishOnly": "bun run build"
},
"peerDependencies": {
"zod": "^3.25.0 || ^4.0.0"
},
"devDependencies": {
"@types/bun": "^1.3.14",
"typescript": "^6.0.3",
"zod": "^4.4.3"
},
"dependencies": {
"@bounded-systems/env": "npm:@jsr/bounded-systems__env@^0.2.0",
"@bounded-systems/policy": "npm:@jsr/bounded-systems__policy@^0.2.1"
}
}