-
Notifications
You must be signed in to change notification settings - Fork 554
/
package.json
47 lines (47 loc) · 1.1 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
42
43
44
45
46
47
{
"name": "wxapkg-unpacker",
"displayName": "微信小程序反编译",
"author": "r3x5ur",
"version": "1.0.0",
"keywords": [
"wxapkg",
"unpack",
"微信小程序",
"微信小游戏",
"反编译"
],
"description": "将微信小程序包wxapkg反编译为微信小程序项目",
"license": "MIT",
"main": "scripts/index.js",
"repository": {
"type": "git",
"url": "https://github.com/r3x5ur/wxapkg-unpacker"
},
"bugs": "https://github.com/r3x5ur/wxapkg-unpacker/issues",
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"wxupk": "node bin/wxunpacker.js",
"wxunpacker": "yarn wxupk"
},
"dependencies": {
"cheerio": "^1.0.0-rc.5",
"colors": "^1.4.0",
"css-tree": "^1.0.0-alpha.28",
"cssbeautify": "^0.3.1",
"escodegen": "^2.0.0",
"esprima": "^4.0.0",
"js-logger": "^1.6.1",
"minimist": "^1.2.7",
"vm2": "^3.6.0"
},
"devDependencies": {
"prettier": "^2.8.1"
},
"bin": {
"wxunpacker": "bin/wxunpacker.js",
"wxupk": "bin/wxunpacker.js"
}
}