-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.31 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "@4players/fleet-nodejs",
"version": "0.8.1",
"description": "NodeJS SDK for the ODIN Fleet API. It's in early development and not feature complete.",
"private": false,
"author": "Phillip Schuster",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/index.d.js",
"scripts": {
"build": "tsc -b ./tsconfig.cjs.json ./tsconfig.esm.json",
"docs": "typedoc src/index.ts --json docs/api.json --excludeExternals --excludePrivate",
"generate-api-from-backend": "rimraf ./src/* && curl https://api.4np.4players.de/b2b/v1/docs/api.json > ./backend/document.json && openapi-generator-cli generate -i ./backend/document.json -g typescript-fetch -o ./src --additional-properties=fileNaming=kebab-case,withNodeImports=true --openapi-normalizer SET_TAGS_FOR_ALL_OPERATIONS=Fleet"
},
"license": "MIT",
"keywords": [
"ODIN",
"Fleet",
"gameserver",
"hosting",
"sdk"
],
"dependencies": {
"axios": "^1.6.8",
"dotenv": "^16.0.3",
"node-fetch": "^3.3.2",
"request": "^2.88.2"
},
"devDependencies": {
"@types/form-data": "^2.5.0",
"@types/node": "^18.11.18",
"esm": "^3.2.25",
"typescript": "^4.9.4",
"rimraf": "^5.0.7",
"@openapitools/openapi-generator-cli": "^2.13.4"
},
"engines": {
"node": ">=18.0.0"
}
}