-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.74 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
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "prisma-schema-block",
"version": "0.0.5",
"license": "MIT",
"description": "GitHub Block to preview Prisma schemas in Markdown files or as a custom file renderer in GitHub.",
"author": "HiDeoo <[email protected]> (https://hideoo.dev)",
"type": "module",
"scripts": {
"dev": "blocks start",
"build": "tsx scripts/build",
"lint": "prettier -c --cache . && eslint . --cache --max-warnings=0 && tsc --noEmit",
"prepare": "husky install"
},
"dependencies": {
"@mrleebo/prisma-ast": "0.5.1",
"elkjs": "0.8.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"reactflow": "11.7.0"
},
"devDependencies": {
"@githubnext/blocks": "2.3.5",
"@hideoo/eslint-config": "1.1.1",
"@hideoo/prettier-config": "1.0.1",
"@hideoo/tsconfig": "2.0.1",
"@types/node": "18.15.11",
"@types/react": "18.0.33",
"esbuild": "0.17.17",
"eslint": "8.37.0",
"husky": "8.0.3",
"lint-staged": "13.2.0",
"prettier": "2.8.7",
"tsx": "3.12.6",
"typescript": "5.0.3"
},
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"typescript": "5"
}
}
},
"engines": {
"node": ">=18"
},
"packageManager": "[email protected]",
"private": true,
"sideEffects": false,
"keywords": [
"github-blocks",
"github",
"blocks",
"prisma",
"schema"
],
"homepage": "https://github.com/HiDeoo/prisma-schema-block",
"repository": {
"type": "git",
"url": "https://github.com/HiDeoo/prisma-schema-block.git"
},
"bugs": "https://github.com/HiDeoo/prisma-schema-block/issues",
"prettier": "@hideoo/prettier-config",
"lint-staged": {
"**/*": "prettier -w -u --cache",
"**/*.{js,jsx,ts,tsx,cjs,mjs}": "eslint --cache --max-warnings=0"
}
}