initial commit

Signed-off-by: ale <ale@manalejandro.com>
Este commit está contenido en:
ale
2025-11-16 17:20:37 +01:00
commit 9bf87efb79
Se han modificado 18 ficheros con 3435 adiciones y 0 borrados

30
package.json Archivo normal
Ver fichero

@@ -0,0 +1,30 @@
{
"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"
}
}