@hey-api/openapi-ts 0.34.1 → 0.34.3
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/README.md +10 -230
- package/dist/node/index.js +1 -1
- package/package.json +5 -5
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hey-api/openapi-ts",
|
|
3
|
-
"version": "0.34.
|
|
3
|
+
"version": "0.34.3",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Turn your OpenAPI specification into a beautiful TypeScript client",
|
|
6
|
-
"homepage": "https://
|
|
6
|
+
"homepage": "https://heyapi.vercel.app/",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
9
|
"url": "git+https://github.com/hey-api/openapi-ts.git"
|
|
@@ -41,6 +41,7 @@
|
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
43
|
"@apidevtools/json-schema-ref-parser": "11.5.4",
|
|
44
|
+
"c12": "1.10.0",
|
|
44
45
|
"camelcase": "8.0.0",
|
|
45
46
|
"commander": "12.0.0",
|
|
46
47
|
"handlebars": "4.7.8"
|
|
@@ -97,7 +98,7 @@
|
|
|
97
98
|
"build-types": "pnpm build-types-temp && pnpm build-types-roll && pnpm build-types-check",
|
|
98
99
|
"build": "pnpm clean && pnpm build-bundle && pnpm build-types",
|
|
99
100
|
"clean": "rimraf dist test/generated test/e2e/generated coverage node_modules/.cache",
|
|
100
|
-
"dev": "rimraf dist && pnpm build-bundle --
|
|
101
|
+
"dev": "rimraf dist && pnpm build-bundle --watch",
|
|
101
102
|
"lint:fix": "eslint . --fix",
|
|
102
103
|
"lint": "eslint .",
|
|
103
104
|
"test:coverage": "vitest run --config vitest.config.unit.ts --coverage",
|
|
@@ -106,7 +107,6 @@
|
|
|
106
107
|
"test:update": "vitest watch --config vitest.config.unit.ts --update",
|
|
107
108
|
"test:watch": "vitest watch --config vitest.config.unit.ts",
|
|
108
109
|
"test": "vitest run --config vitest.config.unit.ts",
|
|
109
|
-
"typecheck": "tsc --noEmit"
|
|
110
|
-
"changeset": "changeset"
|
|
110
|
+
"typecheck": "tsc --noEmit"
|
|
111
111
|
}
|
|
112
112
|
}
|