{
  "name": "@composedb/types",
  "version": "0.7.1",
  "author": "3Box Labs",
  "license": "(Apache-2.0 OR MIT)",
  "homepage": "https://composedb.js.org",
  "keywords": [
    "ceramic",
    "composedb"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/ceramicstudio/js-composedb",
    "directory": "packages/types"
  },
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": "./dist/index.js"
  },
  "files": [
    "dist"
  ],
  "engines": {
    "node": ">=20"
  },
  "sideEffects": false,
  "dependencies": {
    "@ceramicnetwork/common": "^5.1.0",
    "@ceramicnetwork/core": "^5.2.0",
    "@ceramicnetwork/http-client": "^5.2.0",
    "@ceramicnetwork/stream-model": "^4.1.0",
    "@ceramicnetwork/stream-model-instance": "^4.2.0",
    "dids": "^5.0.2",
    "json-schema-typed": "^8.0.1"
  },
  "scripts": {
    "build:clean": "del dist",
    "build:js": "swc src -d ./dist --config-file ../../.swcrc --strip-leading-paths",
    "build:types": "tsc --emitDeclarationOnly --skipLibCheck",
    "build": "pnpm build:clean && pnpm build:types && pnpm build:js",
    "lint": "eslint src --fix"
  }
}