|
| 1 | +{ |
| 2 | + "name": "openapi-pinia-colada", |
| 3 | + "description": "Fast, type-safe @pinia/colada client to work with your OpenAPI schema.", |
| 4 | + "version": "0.0.1", |
| 5 | + "author": { |
| 6 | + "name": "Dylan Meysmans", |
| 7 | + |
| 8 | + }, |
| 9 | + "license": "MIT", |
| 10 | + "type": "module", |
| 11 | + "main": "./dist/index.js", |
| 12 | + "module": "./dist/index.js", |
| 13 | + "types": "./dist/index.d.ts", |
| 14 | + "exports": { |
| 15 | + ".": { |
| 16 | + "import": { |
| 17 | + "types": "./dist/index.d.ts", |
| 18 | + "default": "./dist/index.js" |
| 19 | + }, |
| 20 | + "require": { |
| 21 | + "types": "./dist/index.d.cts", |
| 22 | + "default": "./dist/index.cjs" |
| 23 | + } |
| 24 | + }, |
| 25 | + "./*": "./*" |
| 26 | + }, |
| 27 | + "homepage": "https://openapi-ts.dev", |
| 28 | + "repository": { |
| 29 | + "type": "git", |
| 30 | + "url": "https://github.com/openapi-ts/openapi-typescript", |
| 31 | + "directory": "packages/openapi-pinia-colada" |
| 32 | + }, |
| 33 | + "bugs": { |
| 34 | + "url": "https://github.com/openapi-ts/openapi-typescript/issues" |
| 35 | + }, |
| 36 | + "keywords": [ |
| 37 | + "openapi", |
| 38 | + "swagger", |
| 39 | + "rest", |
| 40 | + "api", |
| 41 | + "oapi_3", |
| 42 | + "oapi_3_1", |
| 43 | + "typescript", |
| 44 | + "fetch", |
| 45 | + "vue", |
| 46 | + "pinia-colada", |
| 47 | + "pinia" |
| 48 | + ], |
| 49 | + "scripts": { |
| 50 | + "build": "pnpm run build:clean && pnpm run build:esm && pnpm run build:cjs", |
| 51 | + "build:clean": "del-cli dist", |
| 52 | + "build:esm": "tsc -p tsconfig.build.json", |
| 53 | + "build:cjs": "esbuild --bundle --platform=node --target=es2019 --outfile=dist/index.cjs --external:typescript src/index.ts", |
| 54 | + "dev": "tsc -p tsconfig.build.json --watch", |
| 55 | + "format": "biome format . --write", |
| 56 | + "lint": "biome check .", |
| 57 | + "generate-types": "openapi-typescript test/fixtures/api.yaml -o test/fixtures/api.d.ts", |
| 58 | + "pretest": "pnpm run generate-types", |
| 59 | + "test": "pnpm run \"/^test:/\"", |
| 60 | + "test:js": "vitest run", |
| 61 | + "test:ts": "tsc --noEmit", |
| 62 | + "version": "pnpm run prepare && pnpm run build" |
| 63 | + }, |
| 64 | + "dependencies": { |
| 65 | + "openapi-typescript-helpers": "workspace:^" |
| 66 | + }, |
| 67 | + "devDependencies": { |
| 68 | + "@pinia/colada": "^0.13.0", |
| 69 | + "@testing-library/vue": "^8.1.0", |
| 70 | + "@vitejs/plugin-vue": "^5.2.1", |
| 71 | + "del-cli": "^5.1.0", |
| 72 | + "esbuild": "^0.24.0", |
| 73 | + "execa": "^8.0.1", |
| 74 | + "msw": "^2.7.0", |
| 75 | + "openapi-fetch": "workspace:^", |
| 76 | + "openapi-typescript": "workspace:^" |
| 77 | + }, |
| 78 | + "peerDependencies": { |
| 79 | + "@pinia/colada": "^0.13.0", |
| 80 | + "openapi-fetch": "workspace:^" |
| 81 | + } |
| 82 | +} |
0 commit comments