Files
activitypub-security-poc/package.json
2025-11-16 17:20:37 +01:00

31 líneas
635 B
JSON

{
"name": "activitypub-security-poc",
"version": "1.0.0",
"description": "Security testing toolkit for ActivityPub protocol",
"main": "src/index.js",
"type": "module",
"bin": {
"ap-security": "./src/cli.js"
},
"scripts": {
"start": "node src/cli.js",
"mock-server": "node src/mock-server.js",
"test": "node --test"
},
"keywords": [
"activitypub",
"security",
"fediverse",
"testing"
],
"author": "",
"license": "MIT",
"dependencies": {
"commander": "^11.1.0",
"node-fetch": "^3.3.2",
"chalk": "^5.3.0",
"jsonld": "^8.3.2",
"http-signature": "^1.4.0"
}
}