prisma-grapher
Version:
ERD generator for prisma schemas
93 lines (92 loc) • 2.14 kB
JSON
{
"name": "prisma-grapher",
"version": "1.0.0",
"description": "ERD generator for prisma schemas",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"files": [
"dist"
],
"bin": "./dist/index.js",
"author": "Aravindan Ve",
"repository": {
"type": "git",
"url": "https://github.com/aravindanve/prisma-grapher"
},
"homepage": "https://github.com/aravindanve/prisma-grapher",
"license": "MIT",
"scripts": {
"_postinstall": "husky",
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"test": "jest",
"prebuild": "rm -rf dist",
"build": " tsc -p tsconfig.build.json",
"prepublishOnly": "yarn run build"
},
"keywords": [
"Prisma",
"TypeScript",
"Graphviz",
"Dot",
"Entity Relationship Diagram",
"ERD"
],
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"@prisma/client": "^4.0.0 || ^5.0.0 || ^6.0.0"
},
"dependencies": {
"@hpcc-js/wasm": "=2.16.1",
"@prisma/generator-helper": "^6.1.0"
},
"devDependencies": {
"@prisma/client": "^6.1.0",
"@types/jest": "^29.5.6",
"@types/node": "^22.7.0",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.0.2",
"pinst": "^3.0.0",
"prettier": "^3.2.5",
"prisma": "^6.1.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown",
"**/*.{js,ts,jsx,tsx}": "eslint --fix"
},
"engines": {
"node": ">=18.18.2"
}
}