-
Notifications
You must be signed in to change notification settings - Fork 151
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.42 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "cc-reverse",
"version": "2.1.1",
"description": "Cocos Creator 逆向工程工具 (支持 2.3.x / 2.4.x / 3.x):脚本拆包、资源还原、JSC 解密",
"main": "src/index.js",
"bin": {
"cc-reverse": "bin/cc-reverse.js"
},
"files": [
"bin/",
"src/",
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"lint": "eslint src/**/*.js",
"test": "jest",
"build": "node scripts/build.js",
"prepublishOnly": "npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Crain99/cc-reverse.git"
},
"bugs": {
"url": "https://github.com/Crain99/cc-reverse/issues"
},
"homepage": "https://github.com/Crain99/cc-reverse#readme",
"keywords": [
"cocos",
"creator",
"reverse",
"engineering",
"extract",
"jsc",
"xxtea"
],
"author": "Crain99",
"license": "MIT",
"devDependencies": {
"eslint": "^8.47.0",
"jest": "^29.6.2",
"nodemon": "^3.0.1"
},
"dependencies": {
"@babel/generator": "^7.16.0",
"@babel/parser": "^7.16.0",
"@babel/traverse": "^7.16.0",
"@babel/types": "^7.16.0",
"chalk": "^4.1.2",
"commander": "^11.0.0",
"image-size": "^0.9.3",
"pako": "^2.1.0",
"string-random": "^0.1.3",
"xml-writer": "^1.7.0",
"xxtea-node": "^1.1.5"
},
"engines": {
"node": ">=14.0.0"
}
}