@stryke/prisma-trpc-generator 0.13.25 → 0.13.34

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": "@stryke/prisma-trpc-generator",
3
- "version": "0.13.25",
3
+ "version": "0.13.34",
4
4
  "type": "module",
5
5
  "description": "A fork of the prisma-trpc-generator code to work in ESM with Prisma v6.",
6
6
  "repository": {
@@ -44,41 +44,16 @@
44
44
  "prisma-trpc-generator-mjs": "dist/generator.js"
45
45
  },
46
46
  "main": "./dist/index.cjs",
47
- "module": "./dist/index.js",
47
+ "module": "./dist/index.mjs",
48
48
  "exports": {
49
- ".": {
50
- "import": { "types": "./dist/index.d.ts", "default": "./dist/index.js" },
51
- "require": {
52
- "types": "./dist/index.d.cts",
53
- "default": "./dist/index.cjs"
54
- },
55
- "default": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }
56
- },
57
- "./index": {
58
- "import": { "types": "./dist/index.d.ts", "default": "./dist/index.js" },
59
- "require": {
60
- "types": "./dist/index.d.cts",
61
- "default": "./dist/index.cjs"
62
- },
63
- "default": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }
64
- },
49
+ ".": { "require": "./dist/index.cjs", "import": "./dist/index.mjs" },
65
50
  "./generator": {
66
- "import": {
67
- "types": "./dist/generator.d.ts",
68
- "default": "./dist/generator.js"
69
- },
70
- "require": {
71
- "types": "./dist/generator.d.cts",
72
- "default": "./dist/generator.cjs"
73
- },
74
- "default": {
75
- "types": "./dist/generator.d.ts",
76
- "default": "./dist/generator.js"
77
- }
51
+ "require": "./dist/generator.cjs",
52
+ "import": "./dist/generator.mjs"
78
53
  },
79
- "./package.json": "./package.json"
54
+ "./*": "./*"
80
55
  },
81
- "types": "./dist/index.d.ts",
56
+ "types": "./dist/index.d.cts",
82
57
  "files": ["dist/**/*"],
83
58
  "keywords": [
84
59
  "stryke",
@@ -86,28 +61,25 @@
86
61
  "utilities",
87
62
  "storm-software",
88
63
  "storm",
89
- "storm-ops",
90
- "cyclone-ui",
91
- "sullivanpj",
92
- "monorepo"
64
+ "sullivanpj"
93
65
  ],
94
66
  "dependencies": {
95
67
  "@prisma/generator-helper": "^6.19.0",
96
68
  "@prisma/internals": "^6.19.0",
97
- "@stryke/fs": "^0.33.8",
98
- "@stryke/path": "^0.21.6",
69
+ "@stryke/fs": "^0.33.17",
70
+ "@stryke/path": "^0.22.8",
99
71
  "esbuild": "^0.25.12",
100
72
  "jiti": "^2.6.1",
101
73
  "parenthesis": "^3.1.8",
102
- "prettier": "^3.7.3",
74
+ "prettier": "^3.7.4",
103
75
  "ts-morph": "^25.0.1",
104
76
  "zod": "^4.1.13"
105
77
  },
106
78
  "devDependencies": {
107
79
  "@types/pluralize": "^0.0.33",
108
80
  "pluralize": "^8.0.0",
109
- "tsup": "^8.5.1"
81
+ "tsdown": "^0.17.1"
110
82
  },
111
83
  "publishConfig": { "access": "public" },
112
- "gitHead": "dc6b0d55613d96152664c76d6f2f6ab6fb9736b1"
84
+ "gitHead": "e9fb3e13aebac54518fd668cecdd3dd89540d34e"
113
85
  }