-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "effect-prisma-generator",
"version": "0.9.0",
"description": "Prisma generator for Effect",
"main": "dist/index.js",
"bin": {
"effect-prisma-generator": "dist/index.js"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsc && chmod +x dist/index.js",
"test": "tsx scripts/runTests.ts",
"format": "prettier --write . && eslint . --fix",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/m9tdev/effect-prisma-generator.git"
},
"keywords": [
"prisma",
"generator",
"effect"
],
"author": "m9tdev",
"license": "MIT",
"dependencies": {
"@prisma/generator-helper": "^7.8.0"
},
"peerDependencies": {
"@prisma/client": "^7.0.0",
"effect": "^3.0.0 || >=4.0.0-beta",
"prisma": "^7.0.0"
},
"devDependencies": {
"@effect/platform-node": "4.0.0-beta.83",
"@eslint/js": "^9.39.1",
"@types/node": "^24.10.1",
"effect": "4.0.0-beta.83",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"prettier": "3.7.1",
"prisma": "^7.8.0",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.48.0",
"vitest": "^3.2.0"
}
}