{
  "name": "isodb",
  "version": "0.1.13",
  "description": "Isomorphic NoSQL Database",
  "sideEffects": false,
  "type": "module",
  "types": "./dist/src/interface.d.ts",
  "funding": {
    "type": "GitHub Sponsors ❤",
    "url": "https://github.com/sponsors/dmonad"
  },
  "exports": {
    ".": {
      "types": "./dist/src/interface.d.ts",
      "node": "./src/node.js",
      "browser": "./src/browser.js"
    },
    "./package.json": "./package.json"
  },
  "files": [
    "dist",
    "src"
  ],
  "scripts": {
    "clean": "rm -rf dist",
    "types": "tsc",
    "debug:browser": "npm run gentesthtml && 0serve -o test.html",
    "debug:node": "node --inspect-brk tests/index.js",
    "test": "c8 node tests/index.js",
    "test-inspect": "node --inspect-brk --unhandled-rejections=strict ./test.js --repetition-time 50 --production",
    "test-extensive": "node test.js && npm test -- --repetition-time 30000 --extensive",
    "lint": "standard && tsc",
    "preversion": "npm run clean && npm run test && npm run types",
    "postpublish": "npm run clean",
    "gentesthtml": "0gentesthtml --script ./tests/index.browser.js > test.html"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/dmonad/isodb.git"
  },
  "author": "Kevin Jahns <kevin.jahns@protonmail.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/dmonad/isodb/issues"
  },
  "homepage": "https://github.com/dmonad/isodb#readme",
  "standard": {
    "ignore": [
      "/dist",
      "/node_modules",
      "/docs"
    ]
  },
  "engines": {
    "node": ">=14"
  },
  "devDependencies": {
    "@types/node": "^18.11.9",
    "c8": "^7.13.0",
    "concurrently": "^7.5.0",
    "fake-indexeddb": "^4.0.0",
    "standard": "^17.0.0",
    "typescript": "^5.0.3"
  },
  "dependencies": {
    "lib0": "^0.2.67"
  },
  "optionalDependencies": {
    "lmdb": "^2.7.2"
  }
}
