0
0
mirror of https://github.com/sp-tarkov/server.git synced 2025-02-13 09:10:43 -05:00
server/project/package.json

85 lines
3.0 KiB
JSON
Raw Normal View History

2023-03-03 15:23:46 +00:00
{
"name": "spt-server",
"version": "4.0.0",
"author": "SPT Server",
2023-03-03 15:23:46 +00:00
"license": "NCSA",
"main": "obj/bundle.js",
"repository": "https://dev.sp-tarkov.com/SPT/Server",
"description": "The single-player modding framework for Escape From Tarkov.",
2023-03-03 15:23:46 +00:00
"icon": "assets/images/icon.ico",
"engines": {
"node": "22.12.0"
2023-03-03 15:23:46 +00:00
},
"scripts": {
2023-11-01 23:59:12 +00:00
"check:circular": "madge --circular --ts-config tsconfig.json --extensions ts ./src/",
2024-07-22 21:15:57 +00:00
"lint": "npx @biomejs/biome lint ./",
"lint:fix": "npx @biomejs/biome lint --write ./",
"style": "npx @biomejs/biome format ./",
"style:fix": "npx @biomejs/biome format --write ./",
"format": "npx @biomejs/biome check --write ./",
"test": "npx vitest run",
"test:watch": "npx vitest",
"test:coverage": "npx vitest run --coverage",
"test:ui": "npx vitest --ui --coverage",
"build:release": "cross-env PKG_CACHE_PATH=\"./.pkg-cache\" gulp build:release",
"build:debug": "cross-env PKG_CACHE_PATH=\"./.pkg-cache\" gulp build:debug",
"build:bleeding": "cross-env PKG_CACHE_PATH=\"./.pkg-cache\" gulp build:bleeding",
2024-03-16 16:11:24 -04:00
"build:bleedingmods": "cross-env PKG_CACHE_PATH=\"./.pkg-cache\" gulp build:bleedingmods",
"run:build": "gulp run:build",
"run:debug": "npm run type-check && tsx ./src/entry/run.ts",
"run:profiler": "gulp run:profiler",
"type-check": "tsc -p tsconfig.debug.json",
"gen:types": "tsc -p tsconfig.types.json",
"gen:items": "tsx ./src/tools/ItemTplGenerator/ItemTplGeneratorProgram.ts",
2025-01-09 10:05:23 +00:00
"gen:productionquests": "tsx ./src/tools/ProductionQuestsGen/ProductionQuestsGenProgram.ts"
2023-03-03 15:23:46 +00:00
},
"dependencies": {
"atomically": "2.0.3",
"fs-extra": "11.2.0",
"i18n": "0.15.1",
"json5": "2.2.3",
"jsonc": "2.0.0",
"jsonrepair": "3.11.2",
"logform": "2.7.0",
"mongoid-js": "1.3.0",
"reflect-metadata": "0.2.2",
"semver": "7.6.3",
"source-map-support": "0.5.21",
"string-similarity-js": "2.1.4",
"tsyringe": "4.8.0",
"winston": "3.17.0",
"winston-daily-rotate-file": "5.0.0",
"ws": "8.18.0",
"typescript": "5.7.3"
2023-03-03 15:23:46 +00:00
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@swc/cli": "0.6.0",
"@swc/core": "1.10.4",
"@types/fs-extra": "11.0.4",
"@types/i18n": "0.13.12",
"@types/minimist": "1.2.5",
"@types/node": "22.10.5",
"@types/semver": "7.5.8",
"@types/ws": "8.5.13",
"@vitest/coverage-istanbul": "2.1.8",
"@vitest/ui": "2.1.8",
"@yao-pkg/pkg": "6.2.0",
"@yao-pkg/pkg-fetch": "3.5.18",
"cross-env": "7.0.3",
"gulp": "5.0.0",
"gulp-execa": "8.0.0",
"gulp-rename": "2.0.0",
"madge": "8.0.0",
"minimist": "1.2.8",
"resedit": "2.0.3",
"tsx": "4.19.2",
"vitest": "2.1.8"
2023-03-03 15:23:46 +00:00
},
"targets": {
"default": {
"includeNodeModules": true
}
}
}