{
  "name": "prismaql",
  "description": "A powerful tool for managing and editing Prisma schema files using a SQL-like DSL.",
  "version": "0.1.6",
  "exports": {
    "import": "./output/esm/index.js",
    "require": "./output/cjs/index.cjs"
  },
  "main": "./output/esm/index.js",
  "module": "./output/esm/index.js",
  "types": "./output/esm/index.d.ts",
  "private": false,
  "type": "module",
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "npm run build:esm && npm run build:cjs",
    "build:esm": "tsc",
    "build:cjs": "tsup",
    "dev": "tsc -w -p tsconfig.esm.json",
    "clean": "rm -rf output"
  },
  "author": {
    "name": "Artyom Gorlovetskiy",
    "url": "https://github.com/unbywyd",
    "email": "unbywyd@gmail.com"
  },
  "keywords": [
    "prisma",
    "prisma-schema",
    "prismaql",
    "dsl",
    "schema-management",
    "prisma-ast",
    "prisma-cli"
  ],
  "license": "MIT",
  "dependencies": {
    "@mrleebo/prisma-ast": "^0.12.1",
    "@prisma/internals": "^6.4.1",
    "boxen": "^8.0.1",
    "chalk": "^4.1.2",
    "change-case": "^5.4.4",
    "cli-table3": "^0.6.5",
    "fs-extra": "^11.3.0",
    "pluralize": "^8.0.0",
    "prismalux": "^0.1.3",
    "treeify": "^1.1.0"
  },
  "devDependencies": {
    "@types/fs-extra": "^11.0.4",
    "@types/node": "^22.10.10",
    "@types/pluralize": "^0.0.33",
    "@types/treeify": "^1.0.3",
    "replace-in-file": "^8.3.0",
    "tsup": "^8.4.0",
    "typescript": "^5.7.2"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/unbywyd/prismaql.git"
  },
  "bugs": {
    "url": "https://github.com/unbywyd/prismaql/issues"
  },
  "homepage": "https://github.com/unbywyd/prismaql#readme",
  "files": [
    "output/",
    "README.md",
    "LICENSE.md"
  ]
}