-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
46 lines (46 loc) · 1.16 KB
/
package.json
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
{
"name": "workerboxjs",
"version": "6.3.2",
"type": "module",
"description": "A secure sandbox to execute untrusted user JavaScript, in a web browser, without any risk to your own domain/site/page.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"start": "node build.js --watch & servatron --http2 --port 8002 --directory server/dist",
"build": "node build.js",
"test": "node test"
},
"files": [
"lib"
],
"keywords": [
"sandbox",
"eval",
"execute",
"javascript",
"untrusted"
],
"author": "Mark Wylde <me@markwylde.com> (https://github.com/markwylde)",
"license": "MIT",
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/markwylde/workerbox.git"
},
"bugs": {
"url": "https://github.com/markwylde/workerbox/issues"
},
"homepage": "https://github.com/markwylde/workerbox#readme",
"devDependencies": {
"@markwylde/ftp-deploy": "^2.0.3",
"chokidar": "^4.0.1",
"debounce": "^2.2.0",
"esbuild": "^0.24.0",
"just-tap": "^2.9.4",
"minify": "^11.4.1",
"puppeteer": "^23.7.0",
"servatron": "^2.7.3"
}
}