-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.56 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
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@paljs/generator",
"version": "9.0.0",
"description": "Prisma generator for PalJS - generates types, GraphQL schemas, and admin UI for Prisma 7",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"paljs-generator": "./bin/cli.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./config": {
"types": "./dist/config/define.d.ts",
"default": "./dist/config/define.js"
},
"./dmmf": {
"types": "./dist/writers/dmmf.d.ts",
"default": "./dist/writers/dmmf.js"
}
},
"files": ["dist", "bin"],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"dev": "tsc -p tsconfig.build.json --watch",
"clean": "rm -rf dist",
"test": "bun test",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@prisma/generator-helper": "^7.3.0"
},
"devDependencies": {
"@types/node": "^22.10.6",
"prisma": "^7.3.0",
"typescript": "^5.8.3"
},
"peerDependencies": {
"prisma": ">=6.0.0 || >=7.0.0"
},
"peerDependenciesMeta": {
"prisma": {
"optional": true
}
},
"repository": {
"type": "git",
"url": "git@github.com:paljs/prisma-tools.git",
"directory": "packages/generator"
},
"homepage": "https://paljs.com",
"bugs": {
"url": "https://github.com/AhmedElywa/prisma-tools/issues"
},
"author": "Ahmed Elywa",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"keywords": ["prisma", "generator", "graphql", "nexus", "admin", "paljs", "prisma-7"]
}