{
  "name": "azimutt",
  "description": "Export database schema from relational or document databases. Import it to https://azimutt.app",
  "version": "0.1.39",
  "license": "MIT",
  "homepage": "https://azimutt.app",
  "keywords": [
    "database",
    "database tool",
    "database schema",
    "diagram",
    "erd",
    "entity-relationship diagram"
  ],
  "type": "module",
  "main": "./out/index.js",
  "types": "./out/index.d.ts",
  "bin": {
    "azimutt": "./out/index.js"
  },
  "dependencies": {
    "chalk": "5.3.0",
    "clear": "0.1.0",
    "commander": "12.1.0",
    "figlet": "1.7.0",
    "open": "10.1.0",
    "zod": "3.23.8",
    "@azimutt/gateway": "^0.1.26",
    "@azimutt/utils": "^0.1.8",
    "@azimutt/models": "^0.1.20"
  },
  "devDependencies": {
    "@jest/globals": "^29.7.0",
    "@types/clear": "^0.1.4",
    "@types/figlet": "^1.7.0",
    "@types/jest": "^29.5.14",
    "@types/node": "^22.10.1",
    "jest": "^29.7.0",
    "nodemon": "^3.1.7",
    "ts-jest": "^29.2.5",
    "ts-node": "^10.9.2",
    "typescript": "5.5.4"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/azimuttapp/azimutt.git",
    "directory": "cli"
  },
  "bugs": {
    "url": "https://github.com/azimuttapp/azimutt/issues"
  },
  "author": {
    "name": "Loïc Knuchel",
    "email": "loicknuchel@gmail.com",
    "url": "https://loicknuchel.fr"
  },
  "scripts": {
    "start": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
    "start:windows": "nodemon --watch 'src/**/*.ts' --exec \"npx ts-node\" src/index.ts",
    "test": "jest",
    "lint": "tsc --noEmit",
    "build": "rm -rf ./out && tsc",
    "exec": "npm run build && node ./out/index.js",
    "dry-publish": "pnpm run build && pnpm test && pnpm pack"
  }
}