@rotesblatt/api-client 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,42 @@
1
+ {
2
+ "name": "@rotesblatt/api-client",
3
+ "version": "1.0.0",
4
+ "description": "Generated TypeScript client for Hex-Tractor API",
5
+ "main": "dist/index.js",
6
+ "types": "dist/index.d.ts",
7
+ "scripts": {
8
+ "generate": "mkdirp generated/typescript && openapi-zod-client ./openApi/hex-tractor-open-api.yml --export-schemas --export-types -o ./generated/typescript/api.ts",
9
+ "build": "npm run generate && tsc",
10
+ "clean": "rimraf generated/typescript dist",
11
+ "prepare": "npm run build"
12
+ },
13
+ "keywords": [
14
+ "hex-tractor",
15
+ "riot-api",
16
+ "openapi",
17
+ "typescript",
18
+ "api-client"
19
+ ],
20
+ "author": "RotesBlatt",
21
+ "license": "MIT",
22
+ "repository": {
23
+ "type": "git",
24
+ "url": "git+https://github.com/RotesBlatt/hex-specs"
25
+ },
26
+ "devDependencies": {
27
+ "@types/node": "^20.11.0",
28
+ "mkdirp": "^3.0.1",
29
+ "openapi-zod-client": "^1.18.2",
30
+ "rimraf": "^5.0.5",
31
+ "typescript": "^5.3.3"
32
+ },
33
+ "dependencies": {
34
+ "axios": "^1.6.7",
35
+ "zod": "^3.25.76",
36
+ "@zodios/core": "^10.9.6"
37
+ },
38
+ "files": [
39
+ "dist/**/*",
40
+ "generated/typescript/**/*"
41
+ ]
42
+ }