iigs-game-engine/package.json

33 lines
1.2 KiB
JSON
Raw Normal View History

2018-08-04 03:32:14 +00:00
{
"name": "iigs-game-engine",
"version": "1.0.0",
"description": "A game engine for the Applie IIgs written in 65816 assembly language",
"main": "index.js",
"config": {
2021-03-24 11:37:08 +00:00
"merlin32": "C:\\Programs\\IIgsXDev\\bin\\Merlin32-1.1.10.exe",
"cadius": "C:\\Programs\\IIgsXDev\\bin\\Cadius.exe",
"gsport": "C:\\Programs\\gsport\\gsport_0.31\\GSPort.exe",
2021-07-10 16:51:45 +00:00
"macros": "C:\\Programs\\BrutalDeluxe\\Merlin32\\Library",
"crossrunner": "C:\\Programs\\Crossrunner\\Crossrunner.exe"
2018-08-04 03:32:14 +00:00
},
"scripts": {
"test": "npm run build && build-image.bat %npm_package_config_cadius% && %npm_package_config_gsport%",
2021-07-10 16:51:45 +00:00
"debug": "%npm_package_config_crossrunner% src\\GTETestApp -Source src\\GTETestApp_S02_MAINSEG_Output.txt -Debug -CompatibilityLayer",
2021-03-22 02:59:54 +00:00
"build": "%npm_package_config_merlin32% -V %npm_package_config_macros% src\\App.s",
2018-08-04 03:32:14 +00:00
"build:watch": "watch \"npm run build\" src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lscharen/iigs-game-engine.git"
},
"author": "Lucas Scharenbroich",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/lscharen/iigs-game-engine/issues"
},
"homepage": "https://github.com/lscharen/iigs-game-engine#readme",
"devDependencies": {
"watch": "latest"
}
}