{
  "name": "openmates",
  "version": "0.16.0",
  "description": "OpenMates CLI and SDK",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "bin": {
    "openmates": "dist/cli.js"
  },
  "files": [
    "dist",
    "fixtures",
    "templates"
  ],
  "scripts": {
    "build": "tsup src/index.ts src/cli.ts src/remoteAccessCrypto.ts --format esm --dts --clean",
    "dev": "tsup src/index.ts src/cli.ts src/remoteAccessCrypto.ts --format esm --dts --watch",
    "typecheck": "tsc --noEmit",
    "test:unit:crypto": "node --test --experimental-strip-types tests/crypto.test.ts",
    "test:unit:storage": "node --test --experimental-strip-types --loader ./tests/loader.mjs tests/storage.test.ts",
    "test:unit:keychain": "node --test --experimental-strip-types tests/keychain.test.ts",
    "test:unit:signup": "node --test tests/signup.test.ts",
    "test:unit:security-setup": "node --test tests/security-setup.test.ts",
    "test:unit:e2e-provisioning": "node --test tests/e2e-provisioning.test.ts",
    "test:unit:ws": "node --test --experimental-strip-types tests/ws.test.ts",
    "test:unit:url-embed": "node --test --experimental-strip-types --loader ./tests/loader.mjs tests/urlEmbed.test.ts",
    "test:unit:embed-renderers": "node --test --experimental-strip-types tests/embedRenderers.test.ts",
    "test:unit:server": "node --test --experimental-strip-types tests/server.test.ts",
    "test:unit:server-quick": "node --test --experimental-strip-types tests/serverQuickTest.test.ts",
    "test:unit:workflows": "node --test --experimental-strip-types --loader ./tests/loader.mjs tests/workflows.test.ts",
    "test:unit:sdk-workflows": "node --test --experimental-strip-types --loader ./tests/loader.mjs tests/sdk-workflows.test.ts",
    "test:unit:remote-access": "node --test --experimental-strip-types --loader ./tests/loader.mjs tests/remoteSources.test.ts tests/remoteAccess.test.ts",
    "test:unit:remote-access-crypto": "node --test --experimental-strip-types --loader ./tests/loader.mjs tests/remoteAccessCrypto.test.ts",
    "test:unit:teams": "node --test --experimental-strip-types --loader ./tests/loader.mjs tests/teams-permissions.test.ts",
    "test:unit:proton-bridge-connector": "node --test --experimental-strip-types --loader ./tests/loader.mjs tests/protonBridgeConnector.test.ts",
    "test:unit:proton-bridge-connector-integration": "node --test --experimental-strip-types --loader ./tests/loader.mjs tests/protonBridgeConnector.integration.test.ts",
    "test:unit:sdk-projects": "node --test --experimental-strip-types --loader ./tests/loader.mjs tests/sdk-projects.test.ts",
    "test:real-sdk-projects": "node --test --experimental-strip-types --loader ./tests/loader.mjs tests/sdk-projects-real-dev.test.ts",
    "test:unit:billing": "node --test tests/billing.test.ts",
    "test:unit:account-delete": "node --test tests/account-delete.test.ts",
    "test:unit:ideabucket": "node --test --experimental-strip-types --loader ./tests/loader.mjs tests/ideabucket.test.ts",
    "test:unit:cli": "node --test tests/cli.test.ts tests/imagesDetectAi.test.ts",
    "test:unit:projects-cli": "node --test --experimental-strip-types --loader ./tests/loader.mjs tests/projectRequester.test.ts && node --test --experimental-strip-types --loader ./tests/loader.mjs --test-name-pattern 'routes deterministic Project CRUD' tests/client.test.ts && node --test --test-name-pattern 'projects deterministic commands' tests/cli.test.ts",
    "test:t-cli-recovery": "node --test --experimental-strip-types --loader ./tests/loader.mjs --test-name-pattern recovery tests/client.test.ts",
    "test:t-cli-update-required": "npm run build && node --test --test-name-pattern update-required tests/cli.test.ts",
    "test:unit:recovery": "npm run test:t-cli-recovery",
    "test:unit:update-required": "npm run test:t-cli-update-required",
    "test:unit:tui": "node --test --experimental-strip-types --loader ./tests/loader.mjs tests/tui.test.ts tests/tuiExampleContinuation.test.ts tests/tuiWorkflowInteraction.test.ts",
    "test:unit:connected-account-import": "node --test --experimental-strip-types --loader ./tests/loader.mjs tests/connectedAccountImport.test.ts",
    "test:unit:benchmark": "node --test --experimental-strip-types --loader ./tests/loader.mjs src/__tests__/benchmark.test.ts",
    "test": "node --test --experimental-strip-types --loader ./tests/loader.mjs tests/crypto.test.ts tests/storage.test.ts tests/keychain.test.ts tests/mentions.test.ts tests/outputRedactor.test.ts tests/fileEmbed.test.ts tests/embedCreator.test.ts tests/shareEncryption.test.ts tests/server.test.ts tests/serverQuickTest.test.ts tests/ws.test.ts tests/urlEmbed.test.ts tests/tui.test.ts tests/tuiExampleContinuation.test.ts tests/tuiWorkflowInteraction.test.ts tests/workflows.test.ts tests/sdk-workflows.test.ts tests/draft-sync.test.ts tests/sdk-draft-sync.test.ts tests/ideabucket.test.ts tests/teams-permissions.test.ts src/__tests__/benchmark.test.ts && node --test --experimental-strip-types --loader ./tests/loader.mjs tests/embedRenderers.test.ts tests/connectedAccountImport.test.ts && node --test tests/cli.test.ts tests/imagesDetectAi.test.ts tests/billing.test.ts tests/account-delete.test.ts tests/signup.test.ts tests/security-setup.test.ts tests/e2e-provisioning.test.ts"
  },
  "keywords": [
    "openmates",
    "cli",
    "sdk"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/glowingkitty/OpenMates.git",
    "directory": "frontend/packages/openmates-cli"
  },
  "license": "MIT",
  "engines": {
    "node": ">=20"
  },
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "@resvg/resvg-js": "^2.6.2",
    "@toon-format/toon": "2.1.0",
    "ahocorasick": "1.0.2",
    "jszip": "^3.10.1",
    "qrcode-terminal": "^0.12.0",
    "tweetnacl": "^1.0.3",
    "ws": "8.21.0",
    "yaml": "2.9.0"
  },
  "devDependencies": {
    "@repo/eslint-config": "workspace:*",
    "@types/node": "^24.5.0",
    "@types/qrcode-terminal": "^0.12.2",
    "@types/ws": "^8.18.1",
    "eslint": "^9.35.0",
    "tsup": "^8.5.0",
    "typescript": "^5.9.2"
  }
}
