@rexeus/typeweaver-openapi 0.11.0 → 0.12.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.
Files changed (1) hide show
  1. package/package.json +15 -16
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rexeus/typeweaver-openapi",
3
- "version": "0.11.0",
3
+ "version": "0.12.0",
4
4
  "description": "Builds OpenAPI 3.1 documents from Typeweaver normalized specs. Powered by Typeweaver 🧵✨",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -26,14 +26,6 @@
26
26
  "LICENSE",
27
27
  "NOTICE"
28
28
  ],
29
- "scripts": {
30
- "typecheck": "tsc --noEmit -p tsconfig.typecheck.json",
31
- "format": "oxfmt",
32
- "build": "tsdown && cp ../../LICENSE ../../NOTICE ./dist/",
33
- "test": "vitest --run",
34
- "prepack": "npm run build",
35
- "preversion": "npm run build"
36
- },
37
29
  "keywords": [
38
30
  "openapi",
39
31
  "json-schema",
@@ -53,16 +45,23 @@
53
45
  },
54
46
  "homepage": "https://github.com/rexeus/typeweaver#readme",
55
47
  "dependencies": {
56
- "@rexeus/typeweaver-zod-to-json-schema": "workspace:^",
57
- "polycase": "^1.1.0"
48
+ "polycase": "^1.1.0",
49
+ "@rexeus/typeweaver-zod-to-json-schema": "^0.12.0"
58
50
  },
59
51
  "peerDependencies": {
60
- "@rexeus/typeweaver-gen": "workspace:^",
61
- "zod": "^4.3.0"
52
+ "zod": "^4.3.0",
53
+ "@rexeus/typeweaver-gen": "^0.12.0"
62
54
  },
63
55
  "devDependencies": {
64
- "@rexeus/typeweaver-gen": "workspace:^",
65
56
  "ibm-openapi-validator": "1.37.13",
66
- "zod": "^4.3.6"
57
+ "zod": "^4.3.6",
58
+ "@rexeus/typeweaver-gen": "^0.12.0"
59
+ },
60
+ "scripts": {
61
+ "typecheck": "tsc --noEmit -p tsconfig.typecheck.json",
62
+ "format": "oxfmt",
63
+ "build": "tsdown && cp ../../LICENSE ../../NOTICE ./dist/",
64
+ "test": "vitest --run",
65
+ "preversion": "npm run build"
67
66
  }
68
- }
67
+ }