mirror of
https://github.com/sp-tarkov/server.git
synced 2025-02-13 06:10:44 -05:00
85 lines
3.0 KiB
JSON
85 lines
3.0 KiB
JSON
{
|
|
"name": "spt-server",
|
|
"version": "4.0.0",
|
|
"author": "SPT Server",
|
|
"license": "NCSA",
|
|
"main": "obj/bundle.js",
|
|
"repository": "https://dev.sp-tarkov.com/SPT/Server",
|
|
"description": "The single-player modding framework for Escape From Tarkov.",
|
|
"icon": "assets/images/icon.ico",
|
|
"engines": {
|
|
"node": "22.12.0"
|
|
},
|
|
"scripts": {
|
|
"check:circular": "madge --circular --ts-config tsconfig.json --extensions ts ./src/",
|
|
"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",
|
|
"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",
|
|
"gen:productionquests": "tsx ./src/tools/ProductionQuestsGen/ProductionQuestsGenProgram.ts"
|
|
},
|
|
"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"
|
|
},
|
|
"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"
|
|
},
|
|
"targets": {
|
|
"default": {
|
|
"includeNodeModules": true
|
|
}
|
|
}
|
|
}
|