-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 989 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 989 Bytes
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
{
"name": "prisma-mysql-comments-generator",
"version": "1.1.4",
"description": "Generate database comments from Prisma schema to a MySQL database",
"type": "module",
"bin": {
"prisma-mysql-comments-generator": "./dist/generator.js"
},
"scripts": {
"prepare": "npm run build",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thelinuxlich/prisma-mysql-comments-generator.git"
},
"keywords": [
"prisma",
"generator",
"mysql"
],
"author": "thelinuxlich",
"license": "MIT",
"bugs": {
"url": "https://github.com/thelinuxlich/prisma-mysql-comments-generator/issues"
},
"homepage": "https://github.com/thelinuxlich/prisma-mysql-comments-generator#readme",
"devDependencies": {
"@types/node": "^22.0.0",
"tsx": "^4.16.2",
"typescript": "^5.5.4"
},
"dependencies": {
"@prisma/generator-helper": "^6.4.1",
"go-go-try": "^5.0.0",
"@mrleebo/prisma-ast": "^0.12.1"
}
}