-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.04 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.04 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
{
"name": "deobf",
"version": "0.0.1",
"description": "AST-level deobfuscation framework",
"type": "module",
"scripts": {
"lint": "eslint src/**/*.ts lib/**/*.ts bin/**/*.ts",
"build": "tsc",
"build-web": "esbuild --bundle --outdir=out/web web/index.html web/main.ts --loader:.html=copy --format=esm --inject:src/web_shim.mjs"
},
"author": "nullableVoidPtr",
"license": "GPL-3.0",
"dependencies": {
"@babel/generator": "^7.28.3",
"@babel/parser": "^7.28.4",
"@babel/traverse": "^7.28.4",
"@babel/types": "^7.28.4",
"babylon-query": "0.0.9",
"base64-arraybuffer": "^1.0.2",
"graphology": "^0.26.0",
"lz-string": "^1.5.0",
"winston": "^3.19.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@eslint/js": "^9.35.0",
"@types/babel__generator": "^7.27.0",
"@types/babel__traverse": "^7.28.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^20.19.13",
"@types/yargs": "^17.0.33",
"esbuild": "^0.21.5",
"eslint": "^9.35.0",
"graphology-types": "^0.24.8",
"typescript": "^5.9.2",
"typescript-eslint": "^8.43.0"
}
}