Files
screeps-deploy-action/package.json
Philipp d02f44f6c7
Lint / pre-commit Linting (push) Successful in 44s
Test / Run Tests (push) Successful in 1m4s
fix(monitor): use global console channel and implement shard filtering
2026-05-16 20:26:32 +02:00

23 lines
602 B
JSON

{
"name": "screeps-deploy-action",
"version": "0.2.1",
"description": "Deploys screeps code to the official game or a private server.",
"type": "module",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "vitest run --globals --coverage",
"build": "ncc build index.js -o dist -m --external utf-8-validate --external bufferutil"
},
"dependencies": {
"@actions/core": "^3.0.0",
"glob": "^13.0.0",
"screeps-api": "^1.7.2"
},
"devDependencies": {
"@vercel/ncc": "^0.38.4",
"@vitest/coverage-v8": "^4.0.16",
"vitest": "^4.0.16"
}
}