-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
55 lines (55 loc) · 1.22 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": "prisma-markdown",
"version": "1.0.9",
"description": "Prisma Markdown documents generator including ERD diagrams and comment descriptions",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"bin": {
"prisma-markdown": "lib/executable/markdown.js"
},
"scripts": {
"build": "rimraf lib && tsc",
"dev": "rimraf lib && tsc --watch",
"test": "ts-node test/index.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/samchon/prisma-markdown"
},
"keywords": [
"prisma",
"markdown",
"erd",
"mermaid",
"description",
"document",
"generator"
],
"author": "Jeongho Nam",
"license": "MIT",
"bugs": {
"url": "https://github.com/samchon/prisma-markdown/issues"
},
"homepage": "https://github.com/samchon/prisma-markdown",
"devDependencies": {
"@prisma/client": "^5.0.0",
"@types/node": "^20.6.0",
"prettier": "^3.0.3",
"prisma": "^5.0.0",
"rimraf": "^5.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@prisma/generator-helper": "^5.0.0"
},
"peerDependencies": {
"@prisma/client": ">= 5.0.0",
"prisma": ">= 5.0.0"
},
"files": [
"lib",
"src",
"README.md"
]
}