-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.03 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
{
"name": "deobf",
"version": "0.0.1",
"description": "AST-level deobfuscation framework",
"type": "module",
"scripts": {
"lint": "eslint src/**/*.ts lib/**/*.ts bin/**/*.ts",
"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.24.6",
"@babel/parser": "^7.24.6",
"@babel/traverse": "^7.24.6",
"@babel/types": "^7.24.6",
"babylon-query": "0.0.9",
"base64-arraybuffer": "^1.0.2",
"graphology": "^0.25.4",
"lz-string": "^1.5.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.6.0",
"@types/babel__generator": "^7.6.8",
"@types/babel__traverse": "^7.20.6",
"@types/eslint__js": "^8.42.3",
"@types/node": "^20.14.2",
"@types/yargs": "^17.0.32",
"esbuild": "^0.21.4",
"eslint": "^9.4.0",
"graphology-types": "^0.24.7",
"typescript": "^5.4.5",
"typescript-eslint": "^7.15.0"
}
}