-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
247 lines (247 loc) · 8.36 KB
/
package.json
File metadata and controls
247 lines (247 loc) · 8.36 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
{
"name": "wp-codebox-workspace",
"version": "0.0.0",
"private": true,
"type": "module",
"exports": {
"./core": {
"types": "./packages/runtime-core/dist/index.d.ts",
"import": "./packages/runtime-core/dist/index.js"
},
"./playground": {
"types": "./packages/runtime-playground/dist/index.d.ts",
"import": "./packages/runtime-playground/dist/index.js"
},
"./cli": {
"types": "./packages/cli/dist/index.d.ts",
"import": "./packages/cli/dist/index.js"
}
},
"files": [
"packages/runtime-core/dist",
"packages/runtime-core/package.json",
"packages/runtime-playground/dist",
"packages/runtime-playground/package.json",
"packages/cli/dist",
"packages/cli/package.json",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -b packages/runtime-core packages/runtime-playground packages/cli",
"prepare": "npm run build",
"package:wordpress-plugin": "tsx scripts/build-wordpress-plugin-zip.ts",
"package-distribution-smoke": "tsx scripts/package-distribution-smoke.ts",
"release:package": "tsx scripts/package-release-artifact.ts",
"policy-validation-smoke": "tsx scripts/policy-validation-smoke.ts",
"artifact-contract-smoke": "tsx scripts/artifact-contract-smoke.ts",
"runtime-episode-smoke": "tsx scripts/runtime-episode-smoke.ts",
"core-phpunit-command-smoke": "tsx scripts/core-phpunit-command-smoke.ts",
"phpunit-diagnostic-artifact-smoke": "tsx scripts/phpunit-diagnostic-artifact-smoke.ts",
"recipe-bench-smoke": "tsx scripts/recipe-bench-smoke.ts",
"preview-port-smoke": "tsx scripts/preview-port-smoke.ts",
"discovery-command-smoke": "tsx scripts/discovery-command-smoke.ts",
"recipe-dry-run-smoke": "tsx scripts/recipe-dry-run-smoke.ts",
"wp-codebox": "node packages/cli/dist/index.js",
"wordpress-plugin-smoke": "php tests/smoke-wordpress-plugin.php",
"check": "npm run build && npm run discovery-command-smoke && npm run policy-validation-smoke && npm run wordpress-plugin-smoke && npm run package-distribution-smoke && npm run artifact-contract-smoke && npm run runtime-episode-smoke && npm run core-phpunit-command-smoke && npm run recipe-bench-smoke && npm run recipe-dry-run-smoke && npm run preview-port-smoke && npm run wp-codebox -- run --mount ./examples/simple-plugin:/wordpress/wp-content/plugins/simple-plugin --command wordpress.run-php --arg code-file=./examples/simple-plugin/probe.php --artifacts ./artifacts --json"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@types/node": "^24.0.0",
"tsx": "^4.20.0",
"typescript": "^5.8.0"
},
"description": "**WP Codebox unlocks secure WordPress code execution from anywhere.** Run agents, accept untrusted patches, evaluate plugins, reproduce bugs, or experiment freely — every sandbox is a disposable WordPress Playground that can't touch its caller. Your host can be a CLI, CI job, mobile app, Node service, WordPress plugin, or anything else that can shell out or hit an API.",
"main": "index.js",
"directories": {
"doc": "docs",
"example": "examples",
"test": "tests"
},
"dependencies": {
"@chubes4/wp-codebox-cli": "file:packages/cli",
"@chubes4/wp-codebox-core": "file:packages/runtime-core",
"@chubes4/wp-codebox-playground": "file:packages/runtime-playground",
"abort-controller": "^3.0.0",
"accepts": "^1.3.8",
"aggregate-error": "^3.1.0",
"ajv": "^8.12.0",
"ansi-regex": "^5.0.1",
"ansi-styles": "^4.3.0",
"array-flatten": "^1.1.1",
"async-lock": "^1.4.1",
"available-typed-arrays": "^1.0.7",
"base64-js": "^1.5.1",
"before-after-hook": "^2.2.3",
"body-parser": "^1.20.5",
"bottleneck": "^2.19.5",
"btoa-lite": "^1.0.0",
"buffer": "^6.0.3",
"buffer-equal-constant-time": "^1.0.1",
"bytes": "^3.1.2",
"call-bind": "^1.0.9",
"call-bind-apply-helpers": "^1.0.2",
"call-bound": "^1.0.4",
"clean-git-ref": "^2.0.1",
"clean-stack": "^2.2.0",
"cliui": "^8.0.1",
"color-convert": "^2.0.1",
"color-name": "^1.1.4",
"content-disposition": "^0.5.4",
"content-type": "^1.0.5",
"cookie": "^0.7.2",
"cookie-signature": "^1.0.7",
"crc-32": "^1.2.2",
"debug": "^2.6.9",
"decompress-response": "^6.0.0",
"define-data-property": "^1.1.4",
"depd": "^2.0.0",
"deprecation": "^2.3.1",
"destroy": "^1.2.0",
"diff3": "^0.0.3",
"dunder-proto": "^1.0.1",
"ecdsa-sig-formatter": "^1.0.11",
"ee-first": "^1.1.1",
"emoji-regex": "^8.0.0",
"encodeurl": "^2.0.0",
"es-define-property": "^1.0.1",
"es-errors": "^1.3.0",
"es-object-atoms": "^1.1.1",
"esbuild": "^0.28.0",
"escalade": "^3.2.0",
"escape-html": "^1.0.3",
"etag": "^1.8.1",
"event-target-shim": "^5.0.1",
"events": "^3.3.0",
"express": "^4.22.0",
"fast-deep-equal": "^3.1.3",
"fast-xml-builder": "^1.2.0",
"fast-xml-parser": "^5.8.0",
"finalhandler": "^1.3.2",
"for-each": "^0.3.5",
"forwarded": "^0.2.0",
"fresh": "^0.5.2",
"fs-ext-extra-prebuilt": "^2.2.7",
"fs-extra": "^11.1.1",
"function-bind": "^1.1.2",
"get-caller-file": "^2.0.5",
"get-intrinsic": "^1.3.0",
"get-proto": "^1.0.1",
"gopd": "^1.2.0",
"graceful-fs": "^4.2.11",
"has-property-descriptors": "^1.0.2",
"has-symbols": "^1.1.0",
"has-tostringtag": "^1.0.2",
"hasown": "^2.0.3",
"http-errors": "^2.0.1",
"iconv-lite": "^0.4.24",
"ieee754": "^1.2.1",
"ignore": "^5.3.2",
"indent-string": "^4.0.0",
"inherits": "^2.0.4",
"ini": "^4.1.2",
"ipaddr.js": "^1.9.1",
"is-callable": "^1.2.7",
"is-fullwidth-code-point": "^3.0.0",
"is-typed-array": "^1.1.15",
"isarray": "^2.0.5",
"isomorphic-git": "^1.37.6",
"json-schema-traverse": "^1.0.0",
"jsonc-parser": "^3.3.1",
"jsonfile": "^6.2.1",
"jsonwebtoken": "^9.0.3",
"jwa": "^2.0.1",
"jws": "^4.0.1",
"lodash.includes": "^4.3.0",
"lodash.isboolean": "^3.0.3",
"lodash.isinteger": "^4.0.4",
"lodash.isnumber": "^3.0.3",
"lodash.isplainobject": "^4.0.6",
"lodash.isstring": "^4.0.1",
"lodash.once": "^4.1.1",
"lru-cache": "^11.0.2-patch.1",
"math-intrinsics": "^1.1.0",
"media-typer": "^0.3.0",
"merge-descriptors": "^1.0.3",
"methods": "^1.1.2",
"mime": "^1.6.0",
"mime-db": "^1.52.0",
"mime-types": "^2.1.35",
"mimic-response": "^3.1.0",
"minimist": "^1.2.8",
"minimisted": "^2.0.1",
"ms": "^2.0.0",
"nan": "^2.27.0",
"negotiator": "^0.6.3",
"object-inspect": "^1.13.4",
"octokit": "^3.1.2",
"on-finished": "^2.4.1",
"once": "^1.4.0",
"pako": "^1.0.11",
"parseurl": "^1.3.3",
"path-expression-matcher": "^1.5.0",
"path-to-regexp": "^0.1.13",
"pify": "^4.0.1",
"possible-typed-array-names": "^1.1.0",
"process": "^0.11.10",
"proxy-addr": "^2.0.7",
"punycode": "^2.3.1",
"qs": "^6.14.2",
"range-parser": "^1.2.1",
"raw-body": "^2.5.3",
"readable-stream": "^4.7.0",
"require-directory": "^2.1.1",
"require-from-string": "^2.0.2",
"safe-buffer": "^5.2.1",
"safer-buffer": "^2.1.2",
"sax": "^1.6.0",
"semver": "^7.8.0",
"send": "^0.19.2",
"serve-static": "^1.16.3",
"set-function-length": "^1.2.2",
"setprototypeof": "^1.2.0",
"sha.js": "^2.4.12",
"side-channel": "^1.1.0",
"side-channel-list": "^1.0.1",
"side-channel-map": "^1.0.1",
"side-channel-weakmap": "^1.0.2",
"simple-concat": "^1.0.1",
"simple-get": "^4.0.1",
"statuses": "^2.0.2",
"string-width": "^4.2.3",
"string_decoder": "^1.3.0",
"strip-ansi": "^6.0.1",
"strnum": "^2.3.0",
"tmp": "^0.2.5",
"tmp-promise": "^3.0.3",
"to-buffer": "^1.2.2",
"toidentifier": "^1.0.1",
"type-is": "^1.6.18",
"typed-array-buffer": "^1.0.3",
"undici-types": "^7.16.0",
"universal-github-app-jwt": "^1.2.0",
"universal-user-agent": "^6.0.1",
"universalify": "^2.0.1",
"unpipe": "^1.0.0",
"uri-js": "^4.4.1",
"utils-merge": "^1.0.1",
"vary": "^1.1.2",
"wasm-feature-detect": "^1.8.0",
"which-typed-array": "^1.1.20",
"wrap-ansi": "^7.0.0",
"wrappy": "^1.0.2",
"ws": "^8.18.0",
"xml-naming": "^0.1.0",
"xml2js": "^0.6.2",
"xmlbuilder": "^11.0.1",
"y18n": "^5.0.8",
"yargs": "^17.7.2",
"yargs-parser": "^21.1.1"
},
"keywords": [],
"author": "",
"license": "ISC"
}