-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
executable file
·55 lines (55 loc) · 1.29 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
{
"name": "drizzle-prisma-generator",
"author": "Drizzle Team",
"version": "0.1.7",
"description": "Generate Drizzle schema from Prisma schema",
"scripts": {
"run": "pnpm run build && cd ../prisma-testbench && npx prisma generate dev && code ./src/db/schema.ts",
"build": "pnpm tsx scripts/build.ts",
"b": "pnpm build",
"pack": "(cd dist && npm pack --pack-destination ..) && rm -f package.tgz && mv *.tgz package.tgz",
"publish": "npm publish package.tgz",
"test": "vitest run",
"lint": "dprint check --list-different"
},
"license": "Apache-2.0",
"devDependencies": {
"@arethetypeswrong/cli": "^0.15.3",
"@types/node": "^20.12.7",
"dprint": "^0.45.1",
"prisma": "^5.12.1",
"tsup": "^8.0.2",
"tsx": "^4.7.2",
"typescript": "^5.4.5",
"zx": "^8.0.2"
},
"keywords": [
"drizzle",
"prisma",
"orm",
"pg",
"mysql",
"postgresql",
"postgres",
"sqlite",
"database",
"sql",
"typescript",
"ts",
"schema"
],
"bin": "./index.js",
"main": "./index.js",
"sideEffects": false,
"publishConfig": {
"provenance": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/drizzle-team/drizzle-prisma-generator.git"
},
"homepage": "https://github.com/drizzle-team/drizzle-prisma-generator",
"dependencies": {
"@prisma/generator-helper": "^5.14.0"
}
}