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

33 lines
1009 B

{
"name": "smva-indexer",
"version": "1.0.0",
"description": "Simple SMVA save file templating system.",
"bin": "indexer.mjs",
"scripts": {
"start": "node indexer.mjs",
"build": "concurrently -n Win,Mac,Lin -c blue,white,yellow \"npm run build-win\" \"npm run build-mac\" \"npm run build-lin\"",
"build-win": "nexe -i indexer.mjs -t windows-x86-14.15.3 -o build/smva-indexer-win.exe",
"build-mac": "nexe -i indexer.mjs -t mac-x64-14.15.3 -o build/smva-indexer-macos",
"build-lin": "nexe -i indexer.mjs -t linux-x64-14.15.3 -o build/smva-indexer-linux"
},
"keywords": [],
"author": {
"name": "Reya C.",
"email": "reya@deliciousreya.net"
},
"license": "MIT",
"type": "module",
"dependencies": {
"chalk": "^5.0.0",
"enquirer": "^2.3.6",
"env-paths": "^3.0.0",
"glob": "^7.2.0",
"home-dir": "^1.0.0",
"ini": "^2.0.0",
"make-dir": "^3.1.0"
},
"devDependencies": {
"concurrently": "^7.0.0",
"nexe": "^4.0.0-beta.19"
}
}