-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 805 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 805 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
{
"name": "@koanjan/dsh-plugin-boundary",
"version": "0.1.0",
"description": "DSH plugin development boundary skill: platform capability boundaries (Client↔Host channels, filesystem limits, dynamic vs bundle lifecycle, install/debug rules)",
"type": "module",
"main": "./lib/index.js",
"exports": {
".": "./lib/index.js",
"./package.json": "./package.json"
},
"files": [
"lib",
"skills",
"cordis.patch.yml",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18"
},
"keywords": [
"dsh",
"cordis",
"skill",
"plugin",
"boundary",
"plugin-development"
],
"peerDependencies": {},
"dsh": {
"bundle": {
"patch": "./cordis.patch.yml"
}
},
"license": "MIT",
"publishConfig": {
"access": "public"
}
}