-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 932 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 932 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "rtx",
"version": "1.0.0",
"description": "road and texture extension pack",
"main": "index.js",
"scripts": {
"setup": "pip install -r rtg/requirements.txt && pip install -r requirements.txt",
"pylint": "pylint *.py",
"pylint:fix": "black *.py && pylint *.py",
"rtg:update": "git submodule update --remote",
"j2": "python jinja.py",
"rtg": "python rtg/main.py --debug \"./.build/*.yml\"",
"makeobj:dev": "makeobj.exe pak256 ./simutrans/pak128/output.pak ./dist/*.dat",
"makeobj": "makeobj pak256 ./dist/rtx.pak ./dist/*.dat",
"simutrans": "start /B ./simutrans/simutrans.exe",
"wipe": "del .build\\* /Q && del dist\\* /Q",
"dev": "npm run wipe && npm run j2 && npm run rtg && npm run makeobj:dev && npm run simutrans && pause && npm run dev",
"build": "mkdir -p .build && npm run j2 && npm run rtg && npm run makeobj"
},
"author": "128Na",
"license": "MIT"
}