{
  "name": "ydb",
  "version": "1.0.0",
  "description": "A local prototyping database that supports yaml and json",
  "main": "index.js",
  "url": "https://github.com/onrirr/ydb",
  "repository": "github:onrirr/ydb",
  "categories": [
    "database",
    "yaml",
    "yml",
    "json",
    "quick.db",
    "quickdb",
    "ydb.js",
    "ydb"
  ],
  "scripts": {
    "compile": "tsc -b ./tsconfig.cjs.json ./tsconfig.esm.json ./tsconfig.types.json",
    "build:clean": "rm -rf ./dist",
    "build": "npm-run-all build:clean compile && node ./scripts/prepare-package-json",
    "start": "npx nodemon"
  },
  "exports": {
    "./*": {
      "types": "./dist/types/*.d.ts",
      "require": "./dist/cjs/*.js",
      "import": "./dist/esm/*.js",
      "default": "./dist/esm/*.js"
    }
  },
  "author": "onrir",
  "license": "MIT",
  "devDependencies": {
    "@types/node": "^20.3.0",
    "nodemon": "^2.0.22",
    "npm-run-all": "^4.1.5",
    "ts-node": "^10.9.1",
    "typescript": "^5.1.3"
  },
  "dependencies": {
    "string-crypto": "^2.0.2",
    "yaml": "^2.3.1"
  }
}
