Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 14 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "screeps-api",
"version": "1.16.1",
"version": "1.16.2",
"description": "",
"repository": "screepers/node-screeps-api",
"main": "dist/ScreepsAPI.js",
Expand All @@ -10,7 +10,6 @@
"prepublishOnly": "npm run build",
"lint": "standard src/**/*.js",
"lint-fix": "standard src/**/*.js --fix",
"test_": "mocha",
"test": "echo Tests disabled, TODO: FIX THIS!",
"2npm": "publish-if-not-published"
},
Expand All @@ -20,25 +19,24 @@
"screeps-api": "bin/screeps-api.js"
},
"dependencies": {
"axios": "^0.28.0",
"commander": "^7.2.0",
"debug": "^4.1.1",
"ws": "^7.4.4",
"axios": "^1.8.4",
"commander": "^13.1.0",
"debug": "^4.4.0",
"ws": "^8.18.1",
"yamljs": "^0.3.0"
},
"optionalDependencies": {
"bufferutil": "^4.0.1",
"utf-8-validate": "^5.0.2"
"bufferutil": "^4.0.9",
"utf-8-validate": "^6.0.5"
},
"devDependencies": {
"lodash": "^4.17.11",
"mocha": "^8.3.2",
"publish-if-not-published": "^2.0.0",
"rollup": "^2.44.0",
"rollup-plugin-typescript2": "^0.30.0",
"standard": "*",
"tslib": "^2.2.0",
"typescript": "^4.2.4"
"lodash": "^4.17.21",
"publish-if-not-published": "^3.1.3",
"rollup": "^4.39.0",
"rollup-plugin-typescript2": "^0.36.0",
"standard": "^17.1.2",
"tslib": "^2.8.1",
"typescript": "^5.8.3"
},
"browser": {
"ws": "./src/ws-browser.js"
Expand Down
4 changes: 2 additions & 2 deletions src/RawAPI.js
Original file line number Diff line number Diff line change
Expand Up @@ -642,7 +642,7 @@ intent can be an empty object for suicide and unclaim, but the web interface sen
code: {
/**
* GET /api/user/code
* for pushing or pulling code, as documented at http://support.screeps.com/hc/en-us/articles/203022612
* for pushing or pulling code, as documented at https://screeps.com/forum/topic/3313/api-user-code-endpoint-with-private-servers/3
* @param {string} branch
* @returns code
*/
Expand All @@ -651,7 +651,7 @@ intent can be an empty object for suicide and unclaim, but the web interface sen
},
/**
* POST /api/user/code
* for pushing or pulling code, as documented at http://support.screeps.com/hc/en-us/articles/203022612
* for pushing or pulling code, as documented at https://screeps.com/forum/topic/3313/api-user-code-endpoint-with-private-servers/3
* @param {string} branch
* @param {*} modules
* @param {*} _hash
Expand Down
Loading