{
  "name": "@memsdb/core",
  "version": "2.1.0",
  "description": "A simple embedded document based database with advanced querying, advanced population/tree creation, and multiple storage and backup providers.",
  "files": [
    "lib"
  ],
  "main": "./lib/cjs/index.js",
  "module": "./lib/esm/index.js",
  "types": "./lib/types/index.d.ts",
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1",
    "build": "run-p build:es build:cjs build:types",
    "build:es": "tsc -p tsconfig.json",
    "build:cjs": "tsc -p tsconfig-cjs.json ",
    "build:types": "tsc -p tsconfig-types.json",
    "prepublishOnly": "yarn build"
  },
  "keywords": [
    "memory",
    "database",
    "json",
    "query",
    "data"
  ],
  "author": "Jake Lees <@brocococonut>",
  "license": "ISC",
  "dependencies": {
    "@memsdb/backup-void": "^1.0.1",
    "@memsdb/storage-memory": "^1.0.1",
    "debug": "^4.3.1",
    "smoldash": "^0.9.0",
    "uuid": "^8.3.2"
  },
  "devDependencies": {
    "@memsdb/types": "^3.0.0",
    "@types/debug": "^4.1.6",
    "@types/uuid": "^8.3.1",
    "npm-run-all": "^4.1.5",
    "typescript": "^4.3.5"
  }
}
