-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 1.37 KB
/
package.json
File metadata and controls
22 lines (22 loc) · 1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "@4players/fleet-cli",
"version": "1.0.0",
"description": "CLI tool for ODIN Fleet",
"scripts": {
"generate-api-from-backend": "rimraf ./backend/api/* && curl https://fleet.4players.io/docs/api.json > ./backend/api.json && openapi-generator-cli generate -i ./backend/api.json -g typescript -o ./backend/api --additional-properties=fileNaming=kebab-case,withNodeImports=true,platform=deno --openapi-normalizer SET_TAGS_FOR_ALL_OPERATIONS=App",
"generate-api-from-staging": "rimraf ./backend/api/* && curl https://staging.api.fleet.4players.io/docs/api.json > ./backend/api.json && openapi-generator-cli generate -i ./backend/api.json -g typescript -o ./backend/api --additional-properties=fileNaming=kebab-case,withNodeImports=true,platform=deno --openapi-normalizer SET_TAGS_FOR_ALL_OPERATIONS=App",
"generate-api-from-local-api": "rimraf ./backend/api/* && curl http://localhost/docs/api.json > ./backend/api.json && openapi-generator-cli generate -i ./backend/api.json -g typescript -o ./backend/api --additional-properties=fileNaming=kebab-case,withNodeImports=true,platform=deno --openapi-normalizer SET_TAGS_FOR_ALL_OPERATIONS=App"
},
"keywords": [
"4players",
"odin",
"fleet",
"cli"
],
"author": "Phillip Schuster",
"license": "MIT",
"devDependencies": {
"@openapitools/openapi-generator-cli": "~2.24.0",
"rimraf": "~6.0.0"
}
}