{
  "name": "@composedb/cli",
  "version": "0.7.1",
  "author": "3Box Labs",
  "license": "(Apache-2.0 OR MIT)",
  "homepage": "https://composedb.js.org",
  "keywords": [
    "ceramic",
    "composedb",
    "cli"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/ceramicstudio/js-composedb",
    "directory": "packages/cli"
  },
  "type": "module",
  "bin": {
    "composedb": "./bin/run.js"
  },
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": "./dist/index.js"
  },
  "files": [
    "bin",
    "dist",
    "oclif.manifest.json"
  ],
  "engines": {
    "node": ">=20"
  },
  "sideEffects": false,
  "oclif": {
    "commands": "./dist/commands",
    "bin": "composedb",
    "topics": {
      "did": {
        "description": "Create DIDs."
      },
      "model": {
        "description": "Create and interact with Model streams"
      },
      "document": {
        "description": "Create and interact with Model Instance Document streams"
      },
      "composite": {
        "description": "Interact with Model streams via Composites"
      },
      "graphql": {
        "description": "Get graphql schemas from Composites and run a local graphql dev server"
      }
    },
    "plugins": [
      "@oclif/plugin-help",
      "@oclif/plugin-version"
    ]
  },
  "dependencies": {
    "@ceramicnetwork/3id-did-resolver": "^5.2.0",
    "@ceramicnetwork/cli": "^5.2.0",
    "@ceramicnetwork/http-client": "^5.2.0",
    "@ceramicnetwork/stream-model": "^4.1.0",
    "@ceramicnetwork/stream-model-instance": "^4.2.0",
    "@ceramicnetwork/streamid": "^5.0.0",
    "@oclif/core": "^3.19.7",
    "@oclif/plugin-help": "^6.0.13",
    "@oclif/plugin-version": "^2.0.12",
    "cli-table3": "^0.6.3",
    "did-resolver": "^4.1.0",
    "dids": "^5.0.2",
    "env-paths": "^3.0.0",
    "fs-extra": "^11.2.0",
    "key-did-provider-ed25519": "^4.0.2",
    "key-did-resolver": "^4.0.0",
    "listr": "^0.14.3",
    "listr-update-renderer": "^0.5.0",
    "ora": "^8.0.1",
    "terminal-size": "^4.0.0",
    "uint8arrays": "^5.0.2",
    "@composedb/devtools": "^0.7.1",
    "@composedb/client": "^0.7.1",
    "@composedb/devtools-node": "^0.7.1",
    "@composedb/runtime": "^0.7.1"
  },
  "devDependencies": {
    "@ceramicnetwork/common": "^5.1.0",
    "@swc-node/register": "^1.8.0",
    "@types/fs-extra": "^11.0.4",
    "@types/jest": "^29.5.12",
    "@types/listr": "^0.14.9",
    "@types/node": "^20.11.20",
    "@types/update-notifier": "^6.0.8",
    "ajv": "^8.12.0",
    "execa": "^8.0.1",
    "jest-dev-server": "^10.0.0",
    "oclif": "^4.4.19",
    "strip-ansi": "~7.1.0",
    "@composedb/types": "^0.7.1"
  },
  "jest": {
    "extensionsToTreatAsEsm": [
      ".ts"
    ],
    "globalSetup": "<rootDir>/globalSetup.js",
    "globalTeardown": "<rootDir>/globalTeardown.js",
    "moduleNameMapper": {
      "^(\\.{1,2}/.*)\\.js$": "$1"
    },
    "transform": {
      "^.+\\.(t|j)s$": [
        "@swc/jest",
        {
          "root": "../.."
        }
      ]
    }
  },
  "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 test --fix",
    "--test": "node --experimental-vm-modules ../../node_modules/jest/bin/jest.js",
    "--test:ci": "pnpm run test --ci --coverage"
  }
}