@riordanpawley/effect-prisma-generator 0.5.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 (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +622 -0
  3. package/dist/index.js +1480 -0
  4. package/package.json +45 -0
package/package.json ADDED
@@ -0,0 +1,45 @@
1
+ {
2
+ "name": "@riordanpawley/effect-prisma-generator",
3
+ "version": "0.5.0",
4
+ "description": "Prisma generator for Effect (fork with Prisma 7 support)",
5
+ "main": "dist/index.js",
6
+ "bin": {
7
+ "effect-prisma-generator": "dist/index.js"
8
+ },
9
+ "files": [
10
+ "dist",
11
+ "README.md"
12
+ ],
13
+ "scripts": {
14
+ "build": "tsc && chmod +x dist/index.js",
15
+ "test": "tsx scripts/runTests.ts",
16
+ "prepublishOnly": "npm run build"
17
+ },
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "https://github.com/riordanpawley/effect-prisma-generator.git"
21
+ },
22
+ "keywords": [
23
+ "prisma",
24
+ "generator",
25
+ "effect",
26
+ "prisma7"
27
+ ],
28
+ "author": "riordanpawley",
29
+ "license": "MIT",
30
+ "dependencies": {
31
+ "@prisma/generator-helper": "^6.19.0",
32
+ "typescript": "^5.9.3"
33
+ },
34
+ "devDependencies": {
35
+ "@effect/platform": "^0.93.3",
36
+ "@effect/platform-node": "^0.101.0",
37
+ "@effect/vitest": "^0.27.0",
38
+ "@prisma/client": "^6.19.0",
39
+ "@types/node": "^24.10.1",
40
+ "effect": "^3.13.4",
41
+ "prisma": "^6.19.0",
42
+ "tsx": "^4.20.6",
43
+ "vitest": "^3.0.7"
44
+ }
45
+ }