{
  "name": "@db-studio/utils",
  "version": "1.1.1",
  "type": "module",
  "description": "Utilities shared between the Directus packages",
  "repository": {
    "type": "git",
    "url": "https://github.com/pxslip/db-studio.git",
    "directory": "packages/utils"
  },
  "funding": "https://github.com/pxslip/db-studio?sponsor=1",
  "license": "GPL-3.0",
  "exports": {
    ".": {
      "types": "./dist/shared/index.d.ts",
      "import": "./dist/shared/index.js"
    },
    "./node": {
      "types": "./dist/node/index.d.ts",
      "import": "./dist/node/index.js"
    },
    "./browser": {
      "types": "./dist/browser/index.d.ts",
      "import": "./dist/browser/index.js"
    },
    "./package.json": "./package.json"
  },
  "main": "dist/shared/index.js",
  "files": [
    "dist",
    "!**/*.test.{js,d.ts}"
  ],
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "date-fns": "2.29.3",
    "fs-extra": "11.1.1",
    "joi": "17.9.1",
    "lodash-es": "4.17.21",
    "micromustache": "8.0.3",
    "tmp": "0.2.1",
    "vue": "3.2.47",
    "@db-studio/constants": "1.0.1",
    "@db-studio/storage": "1.0.1"
  },
  "devDependencies": {
    "@ngneat/falso": "6.4.0",
    "@types/fs-extra": "11.0.1",
    "@types/lodash-es": "4.17.7",
    "@types/node": "18.15.13",
    "@types/tmp": "0.2.3",
    "@vitest/coverage-c8": "0.30.1",
    "concurrently": "8.0.1",
    "typescript": "5.0.4",
    "vitest": "0.30.1",
    "@db-studio/config": "1.0.0",
    "@db-studio/types": "1.1.0"
  },
  "scripts": {
    "build": "tsc --project browser/tsconfig.json && tsc --project node/tsconfig.json && tsc --project shared/tsconfig.json",
    "dev": "concurrently \"tsc --watch --project browser/tsconfig.json\" \"tsc --watch --project node/tsconfig.json\" \"tsc --watch --project shared/tsconfig.json\"",
    "test": "vitest --watch=false"
  }
}