-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.15 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
73
{
"name": "prisma-generator-postgres-realtime",
"version": "1.0.0",
"license": "MIT",
"description": "A prisma generator that turns your Postgres Database into a realtime Database and make it easy to subscribe to changes from Prisma Client type-safe Api",
"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-postgres-realtime.git"
},
"author": "Cauê Nolasco",
"keywords": [
"realtime",
"generator",
"extension",
"subscription",
"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-postgres-realtime": "./src/bin.js"
},
"peerDependencies": {
"pg": "^8.0.0",
"@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.22.0"
},
"packageManager": "[email protected]+sha1.1959a18351b811cdeedbd484a8f86c3cc3bbaf72"
}