-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.01 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
38
39
40
41
{
"name": "adshield-defuser",
"version": "0.0.14",
"description": "AdShield Defuser is a library that decodes AdShield inlined payloads to restore components.",
"main": "out/index.js",
"type": "module",
"engines": {
"node": ">=20.6.0"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"test": "NODE_OPTIONS='--import=tsx --no-warnings' ava"
},
"keywords": [],
"author": "HoJeong Go <[email protected]>",
"license": "MIT",
"ava": {
"extensions": {
"ts": "module"
},
"workerThreads": false
},
"devDependencies": {
"@types/node": "^18.16.3",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"acorn": "^8.11.2",
"acorn-walk": "^8.3.0",
"ava": "^5.2.0",
"eslint": "^8.39.0",
"eslint-config-xo": "^0.43.1",
"eslint-config-xo-typescript": "^0.56.0",
"playwright": "^1.40.0",
"serve": "^14.2.0",
"tsx": "^4.2.0",
"typescript": "^5.0.4"
},
"dependencies": {
"protobufjs": "^7.2.4"
}
}