{
  "name": "@fedify/vocab",
  "version": "2.2.5",
  "homepage": "https://fedify.dev/",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/fedify-dev/fedify.git",
    "directory": "packages/vocab"
  },
  "bugs": {
    "url": "https://github.com/fedify-dev/fedify/issues"
  },
  "funding": [
    "https://opencollective.com/fedify",
    "https://github.com/sponsors/dahlia"
  ],
  "engines": {
    "deno": ">=2.0.0",
    "node": ">=22.0.0",
    "bun": ">=1.1.0"
  },
  "description": "Activity Vocabulary library",
  "type": "module",
  "main": "./dist/mod.cjs",
  "module": "./dist/mod.js",
  "types": "./dist/mod.d.ts",
  "exports": {
    ".": {
      "types": {
        "import": "./dist/mod.d.ts",
        "require": "./dist/mod.d.cts",
        "default": "./dist/mod.d.ts"
      },
      "import": "./dist/mod.js",
      "require": "./dist/mod.cjs",
      "default": "./dist/mod.js"
    },
    "./package.json": "./package.json"
  },
  "dependencies": {
    "@js-temporal/polyfill": "^0.5.1",
    "@multiformats/base-x": "^4.0.1",
    "@logtape/logtape": "^2.0.5",
    "@opentelemetry/api": "^1.9.0",
    "asn1js": "^3.0.6",
    "es-toolkit": "1.43.0",
    "jsonld": "^9.0.0",
    "pkijs": "^3.3.3",
    "@fedify/vocab-tools": "2.2.5",
    "@fedify/webfinger": "2.2.5",
    "@fedify/vocab-runtime": "2.2.5"
  },
  "devDependencies": {
    "@types/node": "^22.17.0",
    "fast-check": "^3.22.0",
    "fetch-mock": "^12.5.4",
    "tsdown": "^0.21.6",
    "typescript": "^6.0.0",
    "@fedify/fixture": "2.0.0"
  },
  "keywords": [
    "Fedify",
    "ActivityPub",
    "Fediverse"
  ],
  "author": {
    "name": "Hong Minhee",
    "email": "hong@minhee.org",
    "url": "https://hongminhee.org/"
  },
  "license": "MIT",
  "scripts": {
    "build:self": "deno task compile && tsdown",
    "build": "pnpm --filter @fedify/vocab... run build:self",
    "prepublish": "pnpm build",
    "pretest": "pnpm build",
    "test": "cd dist-tests && node --test",
    "pretest:bun": "pnpm build",
    "test:bun": "cd dist-tests && bun test --timeout 60000"
  }
}