@hey-api/openapi-ts 0.37.2 → 0.38.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hey-api/openapi-ts",
3
- "version": "0.37.2",
3
+ "version": "0.38.0",
4
4
  "type": "module",
5
5
  "description": "Turn your OpenAPI specification into a beautiful TypeScript client",
6
6
  "homepage": "https://heyapi.vercel.app/",
@@ -69,18 +69,16 @@
69
69
  "@types/cross-spawn": "6.0.6",
70
70
  "@types/express": "4.17.21",
71
71
  "@types/node": "20.12.5",
72
- "@typescript-eslint/eslint-plugin": "7.6.0",
73
- "@typescript-eslint/parser": "7.6.0",
74
72
  "@vitest/coverage-v8": "1.4.0",
75
73
  "axios": "1.6.8",
76
74
  "cross-spawn": "7.0.3",
77
75
  "eslint": "8.57.0",
78
76
  "eslint-config-prettier": "9.1.0",
79
- "eslint-plugin-prettier": "5.1.3",
80
77
  "eslint-plugin-simple-import-sort": "12.0.0",
81
78
  "eslint-plugin-sort-keys-fix": "1.1.2",
82
79
  "express": "4.19.2",
83
80
  "glob": "10.3.12",
81
+ "globals": "15.0.0",
84
82
  "node-fetch": "3.3.2",
85
83
  "prettier": "3.2.5",
86
84
  "puppeteer": "22.6.3",
@@ -91,6 +89,7 @@
91
89
  "ts-node": "10.9.2",
92
90
  "tslib": "2.6.2",
93
91
  "typescript": "5.4.4",
92
+ "typescript-eslint": "7.5.0",
94
93
  "vitest": "1.4.0"
95
94
  },
96
95
  "scripts": {
@@ -102,8 +101,9 @@
102
101
  "build": "pnpm clean && pnpm build-bundle && pnpm build-types",
103
102
  "clean": "rimraf dist test/generated test/e2e/generated coverage node_modules/.cache",
104
103
  "dev": "rimraf dist && pnpm build-bundle --watch",
105
- "lint:fix": "eslint . --fix",
106
- "lint": "eslint .",
104
+ "format": "prettier --write .",
105
+ "lint:fix": "prettier --check . && eslint . --fix",
106
+ "lint": "prettier --check . && eslint .",
107
107
  "test:coverage": "vitest run --config vitest.config.unit.ts --coverage",
108
108
  "test:e2e": "vitest run --config vitest.config.e2e.ts",
109
109
  "test:sample": "node test/sample.cjs",