package.json19 lines · main
| 1 | { |
| 2 | "name": "api-types", |
| 3 | "version": "0.0.0", |
| 4 | "description": "Types shared between Briven apps and packages", |
| 5 | "main": "./index.ts", |
| 6 | "types": "./index.ts", |
| 7 | "scripts": { |
| 8 | "preinstall": "npx only-allow pnpm", |
| 9 | "clean": "rimraf node_modules", |
| 10 | "codegen": "openapi-typescript --redocly ./redocly.yaml --alphabetize --default-non-nullable=false && prettier --cache --write types/*.d.ts" |
| 11 | }, |
| 12 | "author": "", |
| 13 | "license": "MIT", |
| 14 | "devDependencies": { |
| 15 | "openapi-typescript": "^7.4.3", |
| 16 | "prettier": "*", |
| 17 | "typescript": "catalog:" |
| 18 | } |
| 19 | } |