-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.21 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.21 KB
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
{
"name": "bundle-breaker",
"version": "0.1.0",
"description": "Utilities to reverse-engineer bundled/obfuscated JS applications.",
"main": "dist/index.js",
"bin": "dist/cli.js",
"types": "dist/index.d.ts",
"packageManager": "pnpm@8.15.4",
"files": [
"dist/"
],
"keywords": [
"debundle",
"unbundle",
"webpack",
"deobsfuscate",
"deobsfuscator"
],
"scripts": {
"dev": "pnpm build --watch",
"prepack": "pnpm build",
"build": "tsc",
"test": "vitest",
"examples:build-all": "node example-builder.js build-all",
"examples:build": "node example-builder.js build"
},
"author": "awphi (adamw.ph)",
"license": "GPL-3.0-only",
"dependencies": {
"@babel/generator": "^7.24.4",
"@babel/parser": "^7.24.4",
"@babel/traverse": "^7.24.1",
"@babel/types": "^7.24.0",
"commander": "^12.0.0",
"graphology": "^0.25.4",
"graphology-gexf": "^0.13.0",
"openai": "^4.47.1",
"picocolors": "^1.0.1",
"tslib": "^2.6.2"
},
"devDependencies": {
"@types/babel__generator": "^7.6.8",
"@types/babel__traverse": "^7.20.6",
"@types/hash-sum": "^1.0.2",
"@types/node": "20.11.0",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
}
}