-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
72 lines (72 loc) · 2.07 KB
/
package.json
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
65
66
67
68
69
70
71
72
{
"name": "prisma-generator-pothos-codegen",
"version": "0.7.1",
"license": "MIT",
"description": "A prisma generator that generate input types for Pothos. And optionally generate all crud.",
"main": "./src/index.js",
"types": "./src/index.d.ts",
"module": "./src/index.js",
"exports": {
"import": "./src/index.js",
"require": "./src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Cauen/prisma-generator-pothos-codegen.git"
},
"author": "Emanuel Cauê",
"keywords": [
"pothos",
"graphql",
"typescript",
"prisma",
"db",
"postgres",
"codegen"
],
"scripts": {
"test": "jest",
"build": "tsc",
"tscheck": "tsc -noEmit",
"prebuild": "yarn clean",
"postbuild": "shx cp ./README.md ./dist && shx chmod +x ./dist/src/bin.js",
"clean": "shx rm -rf dist",
"pub": "cd dist && npm publish",
"format": "eslint --fix ./src",
"check-src-and-examples": "yarn test && yarn tscheck && cd examples/inputs-simple-sqlite && yarn generate && yarn tscheck",
"fullcheck": "yarn check-src-and-examples"
},
"bin": {
"prisma-generator-pothos-codegen": "./src/bin.js"
},
"peerDependencies": {
"@pothos/core": "^4.0.2",
"@pothos/plugin-prisma": "^4.0.3",
"@prisma/client": "^5.0.0",
"prisma": "^5.0.0"
},
"devDependencies": {
"@prisma/internals": "5.17.0",
"@types/jest": "29.0.0",
"@types/node": "18.7.14",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.3.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-promise": "^6.1.1",
"jest": "<29.0.0",
"prettier": "^3.0.3",
"shx": "0.3.4",
"ts-jest": "28.0.8",
"ts-node": "10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@prisma/generator-helper": "5.17.0"
},
"packageManager": "[email protected]+sha1.1959a18351b811cdeedbd484a8f86c3cc3bbaf72"
}