-
-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 1.91 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 1.91 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "prisma-kysely",
"version": "3.1.1",
"description": "Generate Kysely database types from a Prisma schema",
"repository": {
"url": "git+https://github.com/valtyr/prisma-kysely.git"
},
"type": "module",
"license": "MIT",
"keywords": [
"prisma",
"kysely",
"generator",
"typescript",
"codegen",
"sql"
],
"author": {
"name": "Valtyr Orn Kjartansson",
"url": "http://valtyr.is"
},
"contributors": [
{
"name": "Alistair Smith",
"url": "https://alistair.sh"
},
{
"name": "Arthur Fiorette",
"url": "https://arthur.place"
}
],
"exports": {
".": "./dist/generator.js",
"./generator": "./dist/generator.js",
"./bin": "./dist/bin.js"
},
"bin": {
"prisma-kysely": "dist/bin.js"
},
"files": [
"dist",
"README.md",
"LICENSE",
"package.json"
],
"scripts": {
"build": "bunup src/bin.ts src/generator.ts --packages external --format esm --splitting",
"dev": "bun run build --watch",
"fix": "prettier --write .",
"lint": "eslint ./src",
"prepack": "bun run build",
"release": "bun run build && bun changeset publish",
"start": "node dist/bin.js",
"test": "bun run build && bun test",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@mrleebo/prisma-ast": "^0.14.0",
"@prisma/generator-helper": "^7.0.0",
"@prisma/internals": "^7.0.0",
"typescript": "^5.9.3",
"zod": "^4.4.3"
},
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@types/bun": "^1.3.14",
"@types/node": "25.3.3",
"@types/pg": "^8.20.0",
"@types/prettier": "3.0.0",
"bunup": "^0.16.31",
"eslint": "^10.4.0",
"kysely": "^0.28.17",
"mysql2": "^3.22.3",
"pg": "^8.21.0",
"prettier": "^3.8.3",
"prisma": "^7.8.0",
"typescript-eslint": "^8.59.4"
},
"peerDependencies": {
"prisma": ">=7.0.0"
},
"packageManager": "bun@1.3.14"
}