-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.3 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.3 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
{
"name": "pg-typesafe-triggers",
"version": "0.3.2",
"description": "A typesafe client for defining and subscribing to PostgreSQL triggers using Prisma",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"dev": "ts-node src/index.ts",
"test": "bun test",
"prepublishOnly": "bun run build",
"prepare": "bun run build",
"example": "ts-node examples/basic-usage.ts",
"db:up": "docker-compose up -d",
"db:down": "docker-compose down",
"db:setup": "prisma db push"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bewinxed/pg-typesafe-triggers.git"
},
"keywords": [
"postgresql",
"triggers",
"prisma",
"typesafe",
"listen",
"notify"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/bewinxed/pg-typesafe-triggers/issues"
},
"homepage": "https://github.com/bewinxed/pg-typesafe-triggers#readme",
"peerDependencies": {
"@prisma/client": "^6.8.2",
"postgres": "^3.4.5"
},
"devDependencies": {
"@prisma/adapter-pg": "^6.8.2",
"@types/node": "^22.15.18",
"bun": "^1.0.15",
"prisma": "^6.8.2",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
}
}