-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.12 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
{
"name": "secure-vm",
"version": "1.0.6",
"description": "Experimental JavaScript sandbox based on iframe for frontend (electron, micro apps, etc).",
"main": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint ./src",
"lint:type": "tsc --noEmit -p ./tsconfig.json",
"fix": "eslint ./src --fix",
"build": "tsup"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.com"
},
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/FurryR/secure-vm.git"
},
"keywords": [
"vm",
"secure"
],
"author": "FurryR",
"license": "MIT",
"bugs": {
"url": "https://github.com/FurryR/secure-vm/issues"
},
"homepage": "https://github.com/FurryR/secure-vm#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"eslint": "^8.51.0",
"tsup": "^8.0.1",
"typescript": "^5.2.2"
}
}