forked from 1egoman/debundle
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 929 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
{
"name": "debundle",
"version": "2.0.0",
"description": "Javascript bundle decompiler",
"main": "dist/index.js",
"bin": {
"debundle": "./dist/cli.js"
},
"scripts": {
"cli": "ts-node --transpile-only src/cli.ts",
"clean": "rm -rf dist out",
"build": "tsc"
},
"repository": "https://github.com/TheFireBlast/debundle",
"author": "FireBlast",
"license": "MIT",
"engines": {
"node": ">=12.0.0"
},
"dependencies": {
"acorn": "^8.4.1",
"astring": "^1.7.5",
"chalk": "^3.0.0",
"cli-highlight": "^2.1.4",
"commander": "^4.1.1",
"escope": "^3.6.0",
"estraverse": "^5.2.0",
"estraverse-fb": "^1.3.2",
"sync-request": "^6.1.0"
},
"devDependencies": {
"@types/estraverse": "^5.1.1",
"@types/node": "^14.16.1",
"typescript": "^4.3.5"
},
"prettier": {
"printWidth": 140,
"tabWidth": 4
}
}