{
  "name": "@socialweb.coop/activitypub-testing",
  "version": "0.7.0",
  "main": "src/index.js",
  "types": "dist/src/index.d.ts",
  "type": "module",
  "exports": {
    ".": {
      "default": "./src/index.js",
      "types": "./dist/src/index.d.ts"
    },
    "./activitypub": {
      "default": "./src/activitypub.js",
      "types": "./dist/src/activitypub.d.ts"
    },
    "./test-actor": {
      "default": "./src/test-actor.js",
      "types": "./dist/src/test-actor.d.ts"
    },
    "./test-cases": {
      "default": "./src/test-cases/index.js",
      "types": "./dist/src/test-cases/index.d.ts"
    }
  },
  "license": "RPL-1.5",
  "dependencies": {
    "@socialweb.coop/activitypub-behaviors": "^0.2.2",
    "@types/markdown-it": "^13.0.7",
    "@types/node": "^20.4.2",
    "@types/web": "^0.0.128",
    "@typescript-eslint/eslint-plugin": "^6.11.0",
    "@typescript-eslint/parser": "^6.11.0",
    "concurrently": "^8.2.2",
    "dedent": "^1.5.1",
    "fastify": "^4.17.0",
    "markdown-it": "^13.0.2",
    "node-html-parser": "^6.1.11",
    "typedoc": "^0.25.3",
    "typescript": "^5.2.2",
    "yaml": "^2.3.1"
  },
  "devDependencies": {
    "@dagger.io/dagger": "^0.6.1",
    "c8": "^8.0.1",
    "eslint": "^8.53.0",
    "http-server": "^14.1.1",
    "rimraf": "^5.0.5"
  },
  "bin": {
    "activitypub-testing": "./src/cli.js"
  },
  "scripts": {
    "cli": "./src/cli.js",
    "activitypub-testing": "npm run cli",
    "build": "npm run tsc",
    "build:watch": "npm run tsc -- --watch",
    "docs": "rimraf docs && npx typedoc",
    "docs:server": "http-server docs",
    "lint": "concurrently npm:lint:eslint npm:lint:markdownlint",
    "lint:eslint": "npx eslint src",
    "lint:markdownlint": "npx markdownlint-cli2",
    "start": "node ./src/start.mjs",
    "test": "node --test --test-reporter=spec",
    "test:coverage": "c8 node --test",
    "test:actors": "./bin/test-actors",
    "test:local": "./bin/test-local",
    "tsc": "tsc --build"
  }
}