-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
56 lines (56 loc) · 1.38 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
{
"name": "metavm",
"version": "1.4.3",
"author": "Timur Shemsedinov <[email protected]>",
"license": "MIT",
"description": "Metarhia script loader, node.js vm wrapper",
"keywords": [
"node.js",
"metarhia",
"vm",
"sandbox",
"context",
"script",
"container",
"isolation"
],
"main": "metavm.js",
"types": "metavm.d.ts",
"readmeFilename": "README.md",
"browser": {
"./metavm.js": "./dist/metavm.js"
},
"files": [
"dist/",
"metavm.d.ts"
],
"engines": {
"node": "18 || 19 || 20 || 21 || 22 || 23"
},
"repository": {
"type": "git",
"url": "git+https://github.com/metarhia/metavm.git"
},
"bugs": {
"url": "https://github.com/metarhia/metavm/issues",
"email": "[email protected]"
},
"homepage": "https://metarhia.com",
"funding": {
"type": "patreon",
"url": "https://www.patreon.com/tshemsedinov"
},
"scripts": {
"test": "npm run lint && npm run types && node --test",
"types": "tsc -p tsconfig.json",
"lint": "eslint . && prettier --check \"**/*.js\" \"**/*.json\" \"**/*.md\" \"**/*.ts\"",
"fix": "eslint . --fix && prettier --write \"**/*.js\" \"**/*.json\" \"**/*.md\" \"**/*.ts\""
},
"devDependencies": {
"@types/node": "^22.10.5",
"eslint": "^9.17.0",
"eslint-config-metarhia": "^9.1.1",
"prettier": "^3.4.2",
"typescript": "^5.7.2"
}
}