31 líneas
635 B
JSON
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"
|
|
}
|
|
}
|