Indexer for SMVA save files
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
smva-indexer/package.json

41 lines
1.6 KiB

{
"name": "smva-indexer",
"version": "1.0.1",
"description": "Simple SMVA save file templating system.",
"bin": "indexer.mjs",
"scripts": {
"start": "node indexer.mjs",
"build": "npm run build-rollup && concurrently -i -n Win,Mac,Lin -c blue,white,yellow \"npm run build-win-nexe\" \"npm run build-mac-nexe\" \"npm run build-lin-nexe\"",
"build-rollup": "rollup -c rollup.config.js -f commonjs indexer.mjs",
"build-win-nexe": "nexe -t windows-x86-14.15.3 -i build/smva-indexer-bundle.js -n indexer -o build/smva-indexer-win.exe --verbose",
"build-mac-nexe": "nexe -t mac-x64-14.15.3 -i build/smva-indexer-bundle.js -n indexer -o build/smva-indexer-macos --verbose",
"build-lin-nexe": "nexe -t linux-x64-14.15.3 -i build/smva-indexer-bundle.js -n indexer -o build/smva-indexer-linux --verbose",
"build-win": "npm run build-rollup && npm run build-win-nexe",
"build-mac": "npm run build-rollup && npm run build-mac-nexe",
"build-lin": "npm run build-rollup && npm run build-lin-nexe"
},
"keywords": [],
"author": {
"name": "Reya C.",
"email": "reya@deliciousreya.net"
},
"license": "MIT",
"dependencies": {
"chalk": "^5.0.0",
"enquirer": "^2.3.6",
"env-paths": "^3.0.0",
"home-dir": "^1.0.0",
"ini": "^2.0.0",
"make-dir": "^3.1.0",
"source-map-support": "^0.5.21"
},
"devDependencies": {
"@rollup/plugin-alias": "^3.1.9",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"concurrently": "^7.0.0",
"nexe": "^4.0.0-beta.19",
"rollup": "^2.67.2"
}
}