VforValens
49455958e9
v1.6.0 Changelog * Compatible with SPT-Aki v3.2.2 * Updated Readme with new features. * Combined armorPlusArmorVests into removeGearRestrictions so that it now removes all gear restrictions. Located in config/armor.json * Adjusted PMC Difficulty Weights to be 0/40/30/30 by default. Located in config/bots.json * Removed Remove Backpack Filter. Located in config/items.json * Added Remove Backpack, Container, In Raid Items, and Secured Container Restrictions. Located in config/items.json * Added the ability to adjust the time it takes to examine items. Located in config/items.json/examineTime * Added the ability to enable/disable updateTime for traders. Located in config/traders.json If you have custom traders they will need to be added to the updateTime array (Simply copy/paste one of the lines including the {} and add in the traderId for your custom trader.) * Fixed logic for Fence blacklist because JS sucks /s. Located in config/traders.json * Cleaned up armor.ts code and moved a lot of the armor materials to their own individual functions. * Fixed types in items.ts, and cleaned up a lot of functions, and general code.
26 lines
1.0 KiB
JSON
26 lines
1.0 KiB
JSON
{
|
|
"name": "Valens-AIO",
|
|
"version": "1.6.0",
|
|
"main": "src/mod.js",
|
|
"license": "CC BY-NC-ND 4.0",
|
|
"author": "Valens",
|
|
"akiVersion": "3.2.*",
|
|
"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"
|
|
}
|
|
}
|