{
    "name": "prisma-schema-trans",
    "description": "Prisma schema post-processor for change names and fields to camelcase and pluralize for push db to a prisma schema.",
    "version": "1.5.3",
    "repository": "https://github.com/botika/prisma-schema-transformer",
    "authors": [
        {
            "name": "Michael Lin",
            "email": "hi@michaellin.me",
            "url": "https://michaellin.me"
        },
        {
            "name": "Juan Aguilar Santillana",
            "email": "mhpoin@gmail.com"
        }
    ],
    "license": "MIT",
    "keywords": [
        "prisma",
        "camelcase",
        "schema"
    ],
    "main": "dist/src/index.mjs",
    "bin": {
        "prisma-schema-trans": "dist/src/bin.mjs",
        "prisma-db-pull": "db-pull.sh"
    },
    "files": [
        "dist",
        "schema.awk",
        "db-pull.sh"
    ],
    "engines": {
        "node": ">=16.17"
    },
    "scripts": {
        "build": "rm -rf dist && tsc -p tsconfig.build.json",
        "test": "DATABASE_URL=postgresql://localhost:5432/prisma vitest test.mts",
        "release": "pnpm check && pnpm test -- --run && pnpm build && dotenv release-it",
        "fix": "pnpm lint && pnpm fmt",
        "check": "pnpm lint:check && pnpm fmt:check",
        "lint": "eslint --cache --max-warnings 0 --fix '**/*.{mts,ts,js}'",
        "fmt": "prettier --write '**/*.{md,prisma,json}'",
        "lint:check": "eslint --cache --max-warnings 0 '**/*.{mts,ts,js}'",
        "fmt:check": "prettier --check '**/*.{md,prisma,json}'",
        "prepare": "husky install"
    },
    "dependencies": {
        "@antfu/ni": "^0.21.12",
        "@prisma/engine-core": "^4.13.0",
        "@prisma/generator-helper": "^5.16.2",
        "@prisma/internals": "^5.16.2",
        "camelcase": "^8.0.0",
        "commander": "^12.1.0",
        "dotenv": "^16.4.5",
        "immer": "^10.1.1",
        "pluralize": "^8.0.0",
        "prisma": "^5.16.2",
        "ts-toolbelt": "^9.6.0"
    },
    "devDependencies": {
        "@commitlint/cli": "19.3.0",
        "@commitlint/config-conventional": "19.2.2",
        "@release-it/conventional-changelog": "8.0.1",
        "@types/jest": "29.5.12",
        "@types/node": "20.14.10",
        "@types/pluralize": "0.0.33",
        "@typescript-eslint/eslint-plugin": "7.16.0",
        "@typescript-eslint/parser": "7.16.0",
        "@vitest/coverage-c8": "0.24.4",
        "@vitest/coverage-v8": "^2.0.2",
        "dotenv-cli": "7.4.2",
        "eslint": "9.6.0",
        "eslint-config-prettier": "9.1.0",
        "eslint-plugin-prettier": "5.1.3",
        "fp-ts": "2.16.8",
        "husky": "9.0.11",
        "lint-staged": "15.2.7",
        "prettier": "3.3.2",
        "prettier-plugin-prisma": "5.0.0",
        "release-it": "17.5.0",
        "typescript": "5.5.3",
        "vitest": "2.0.2"
    },
    "lint-staged": {
        "*.{mts,ts,js}": "eslint --cache --fix",
        "*.{json,prisma,md}": "prettier --write"
    }
}
