-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 921 Bytes
/
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
{
"name": "offline-blitz",
"version": "0.2.0",
"description": "Sandboxing unplugged",
"main": ".lib/index.js",
"bin": {
"offline-blitz": "./bin/offline-blitz"
},
"scripts": {
"build": "tsc -p .",
"global": "npm i -g",
"sandbox": "node ./lib/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/erhise/offline-blitz.git"
},
"keywords": [
"cli",
"sandbox",
"terminal",
"typescript",
"javascript",
"nodejs"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/erhise/offline-blitz/issues"
},
"homepage": "https://github.com/erhise/offline-blitz#readme",
"dependencies": {
"arg": "^4.1.3",
"blessed": "^0.1.81",
"chokidar": "^3.5.1",
"ts-node": "^9.1.1"
},
"devDependencies": {
"@types/blessed": "^0.1.17",
"@types/node": "^14.14.31",
"typescript": "^4.2.2"
}
}