forked from initminal/run
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.31 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
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "@initminal/run",
"version": "0.2.24",
"types": "./dist/types/index.d.ts",
"main": "./dist/index.js",
"files": [
"dist/**/*"
],
"scripts": {
"clean": "rm -rf ./dist",
"build": "npm run clean && tsc",
"test": "jest",
"test:watch": "jest --watch",
"docs": "rm -rf ./site/public/docs/ && npx typedoc src/index.ts --out ./site/public/docs/ --readme none"
},
"keywords": [
"jailed",
"isomorphic",
"sandbox",
"export",
"eval",
"plugin",
"untrusted",
"restricted",
"privilliges",
"access",
"security",
"thread",
"worker",
"process",
"messaging",
"vm",
"esm",
"es6"
],
"author": "Benjamin Tong <ben@bentong.xyz> (https://bentong.xyz)",
"description": "",
"devDependencies": {
"@types/jest": "^29.4.1",
"@types/lodash": "^4.14.192",
"@types/node-fetch": "^2.6.2",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"prettier": "^2.8.4",
"typedoc": "^0.23.28",
"typescript": "^4.9.5"
},
"dependencies": {
"fp-ts": "^2.13.1",
"lodash": "^4.17.21",
"node-fetch": "^2.6.9",
"web-worker": "^1.2.0"
}
}