-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 943 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 943 Bytes
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
{
"name": "rl-item-mod",
"version": "1.0.5",
"type": "module",
"description": "A comprehensive CLI tool for safely applying visual asset swaps to Rocket League UPK files with full encryption and binary offset handling.",
"main": "dist/index.js",
"bin": {
"rl-item-mod": "dist/index.js"
},
"files": [
"dist",
"python"
],
"scripts": {
"build": "tsc",
"start": "ts-node src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"rocket-league",
"upk",
"modding",
"asset-swapper"
],
"author": "RLItemMod",
"license": "ISC",
"dependencies": {
"axios": "^1.16.0",
"commander": "^14.0.3",
"inquirer": "^13.4.2",
"string-similarity": "^4.0.4"
},
"devDependencies": {
"@types/inquirer": "^9.0.9",
"@types/node": "^25.6.0",
"@types/string-similarity": "^4.0.2",
"ts-node": "^10.9.2",
"typescript": "^6.0.3"
}
}