-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
20 lines (20 loc) · 835 Bytes
/
package.json
File metadata and controls
20 lines (20 loc) · 835 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "namet.ag",
"version": "1.0.0",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"generate:openapi": "rimraf ./client && npx @openapitools/openapi-generator-cli generate -i openapi/oas3-api.json -g typescript-axios -o client --skip-validate-spec --additional-properties supportsES6=true,npmName=namet.ag",
"generate:setup": "node setup",
"generate:install": "cd client && npm install && cd ..",
"generate:build": "cd client && npm run build && npm pack && cd ..",
"generate": "npm run generate:openapi && npm run generate:setup && npm run generate:install && npm run generate:build"
},
"keywords": [],
"author": "eyezah",
"license": "MIT",
"description": "",
"devDependencies": {
"@openapitools/openapi-generator-cli": "^2.20.0",
"rimraf": "^5.0.10"
}
}