Valens
37d356736c
* Added additional items to Airdrop Blacklist into the airdrop.json * Added botGenerationBatchSizePerType and reworked maxBotCap to current defaults and to include Streets into bots.json * Added botRelativeLevelDeltaMax into bots.json * Added runIntervalSeconds into flea.json; affects how often flea will refresh in-game (so selling faster or slower - is taxing on CPU resources as it calls more often or less often pending how you set it; default is 45 seconds) into flea.json * Reworked Ragfair Conditions to take current server values into flea.json * Removed airFilterUnitFlowRate, generatorFuelFlowRate, and gpuBoostRate from hideout.json; these may return in the future however, as of now they have been removed from the server config and I would need to dive deep into server code. * Consolidated timeLimit into its own boolean and raidTime settings. Restructured AiAmount and AiDifficulty to match the server config in raid.json * Added new types into the bots.ts config file * Added new types into the flea.ts config file * Removed types no longer being used in the hideout.ts config file * Added new types into the raid.ts config file * Added Streets Marked Room Loot into the Containers In Marked Room Loot Pool * General rework and cleanup of code
26 lines
1.0 KiB
JSON
26 lines
1.0 KiB
JSON
{
|
|
"name": "Valens-AIO",
|
|
"version": "1.8.0",
|
|
"main": "src/mod.js",
|
|
"license": "CC BY-NC-ND 4.0",
|
|
"author": "Valens",
|
|
"akiVersion": ">=3.5.0",
|
|
"scripts": {
|
|
"setup:environment": "npm i",
|
|
"build:unzipped": "copyfiles -e \"./node_modules/**/*.*\" -e \"./dist/**/*.*\" -e \"./package-lock.json\" -e \"./tsconfig.json\" -e \"./README.txt\" -e \"./mod.code-workspace\" \"./**/*.*\" ./dist",
|
|
"zip:files": "cd dist/ && bestzip ../mod.zip *",
|
|
"build:zip": "npm run clean:environment && npm run build:unzipped && npm run zip:files",
|
|
"clean:environment": "node -e \"require('fs').rm('mod.zip', ()=>{})\" && node -e \"require('fs').rmdir('./dist/',{recursive:true},()=>{})\""
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^14.15.3",
|
|
"@typescript-eslint/eslint-plugin": "^4.33.0",
|
|
"@typescript-eslint/parser": "^4.33.0",
|
|
"copyfiles": "2.4.1",
|
|
"eslint": "7.26.0",
|
|
"tsyringe": "4.6.0",
|
|
"typescript": "4.6.4",
|
|
"bestzip": "2.2.1"
|
|
}
|
|
}
|