{
  "name": "helix-ts",
  "version": "1.0.8",
  "description": "TypeScript Library for working with HelixDB",
  "files": [
    "dist"
  ],
  "scripts": {
    "clean": "rimraf dist",
    "build": "npm run build:js && npm run build:types",
    "build:js": "tsup",
    "build:types": "tsc --project tsconfig.types.json",
    "test": "jest",
    "prepare": "npm run build"
  },
  "keywords": [
    "helixdb",
    "typescript"
  ],
  "homepage": "https://www.helix-db.com/",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/HelixDB/helix-ts.git"
  },
  "main": "./dist/cjs/index.cjs",
  "module": "./dist/esm/index.mjs",
  "types": "dist/types/index.d.ts",
  "sideEffects": false,
  "exports": {
    ".": {
      "types": "./dist/types/index.d.ts",
      "require": "./dist/cjs/index.cjs",
      "import": "./dist/esm/index.mjs"
    }
  },
  "author": "HelixDB",
  "license": "MIT",
  "devDependencies": {
    "@types/jest": "^29.0.0",
    "jest": "^29.0.0",
    "rimraf": "^5.0.10",
    "ts-jest": "^29.0.0",
    "tsup": "^8.5.0",
    "typescript": "^5.0.0"
  }
}
