-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.7 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.7 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
{
"author": "sheldonj",
"bugs": {
"url": "https://github.com/sheldonj/zenstack-docs-plugin/issues"
},
"dependencies": {
"beautiful-mermaid": "^0.1.3"
},
"description": "ZenStack plugin that generates rich, browsable Markdown documentation from ZModel schemas",
"devDependencies": {
"@types/node": "^25.3.5",
"@zenstackhq/common-helpers": "^3.3.3",
"@zenstackhq/language": "^3.3.3",
"@zenstackhq/sdk": "^3.3.3",
"eslint": "^9.0.0",
"eslint-config-canonical": "^47.4.2",
"tsup": "^8.0.0",
"typescript": "^5.8.0",
"typescript-eslint": "^8.56.1",
"vitest": "^3.0.0"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"homepage": "https://github.com/sheldonj/zenstack-docs-plugin#readme",
"keywords": [
"zenstack",
"zmodel",
"documentation",
"markdown",
"erd",
"mermaid",
"schema",
"prisma",
"plugin",
"codegen"
],
"license": "MIT",
"name": "zenstack-docs-plugin",
"packageManager": "pnpm@9.5.0",
"peerDependencies": {
"@zenstackhq/language": ">=3.0.0",
"@zenstackhq/sdk": ">=3.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sheldonj/zenstack-docs-plugin.git"
},
"scripts": {
"build": "tsc --noEmit && tsup-node",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"watch": "tsup-node --watch"
},
"type": "module",
"version": "0.2.1"
}