forked from OpenWF/SpaceNinjaServer
57 lines
2.1 KiB
JSON
57 lines
2.1 KiB
JSON
{
|
|
"name": "wf-emulator",
|
|
"version": "0.1.0",
|
|
"description": "WF Emulator",
|
|
"main": "index.ts",
|
|
"scripts": {
|
|
"start": "node --enable-source-maps --import ./build/src/pathman.js build/src/index.js",
|
|
"build": "node scripts/plugin-discovery.js && tsgo --sourceMap && ncp static/webui build/static/webui && ncp plugins build/plugins",
|
|
"build:tsc": "node scripts/plugin-discovery.js && tsc --incremental --sourceMap && ncp static/webui build/static/webui && ncp plugins build/plugins",
|
|
"build:dev": "node scripts/plugin-discovery.js && tsgo --sourceMap",
|
|
"build:dev:tsc": "node scripts/plugin-discovery.js && tsc --incremental --sourceMap",
|
|
"build-and-start": "npm run build && npm run start",
|
|
"build-and-start:bun": "npm run verify && npm run bun-run",
|
|
"dev": "node scripts/dev.js",
|
|
"dev:bun": "bun scripts/dev.js",
|
|
"verify": "tsgo --noEmit",
|
|
"bun-run": "bun src/index.ts",
|
|
"lint": "eslint --ext .ts .",
|
|
"lint:ci": "eslint --ext .ts --rule \"prettier/prettier: off\" .",
|
|
"lint:fix": "eslint --fix --ext .ts .",
|
|
"prettier": "prettier --write .",
|
|
"update-translations": "cd scripts && node update-translations.js",
|
|
"new-plugin-ts": "node scripts/new-plugin-ts.js",
|
|
"new-plugin-js": "node scripts/new-plugin-js.js"
|
|
},
|
|
"license": "GNU",
|
|
"dependencies": {
|
|
"@types/express": "^5",
|
|
"@types/morgan": "^1.9.9",
|
|
"@types/websocket": "^1.0.10",
|
|
"@types/ws": "^8.18.1",
|
|
"@typescript/native-preview": "^7.0.0-dev.20250625.1",
|
|
"chokidar": "^4.0.3",
|
|
"crc-32": "^1.2.2",
|
|
"express": "^5",
|
|
"json-with-bigint": "^3.4.4",
|
|
"mongoose": "^8.11.0",
|
|
"morgan": "^1.10.0",
|
|
"ncp": "^2.0.0",
|
|
"typescript": "^5.5",
|
|
"undici": "^7.10.0",
|
|
"warframe-public-export-plus": "^0.5.74",
|
|
"warframe-riven-info": "^0.1.2",
|
|
"winston": "^3.17.0",
|
|
"winston-daily-rotate-file": "^5.0.0",
|
|
"ws": "^8.18.2"
|
|
},
|
|
"devDependencies": {
|
|
"@typescript-eslint/eslint-plugin": "^8.28.0",
|
|
"@typescript-eslint/parser": "^8.28.0",
|
|
"eslint": "^8",
|
|
"eslint-plugin-prettier": "^5.2.5",
|
|
"prettier": "^3.5.3",
|
|
"tree-kill": "^1.2.2"
|
|
}
|
|
}
|