node/package.json
Stefan Schmidt-Egermann 1f2d02b916
feat: initial node content (v0.1.0)
- ESM-Package für Node.js 18+
- Client mit Sync, Async (mit Polling), Webhook, Verify, Download
- Typisierte Error-Klassen
- Webhook-Signatur-Verifikation (timingSafeEqual)
- 13 Tests mit Node native test runner
2026-04-25 12:26:04 +02:00

49 lines
1.1 KiB
JSON

{
"name": "@hightrusted/capture",
"version": "0.1.0",
"description": "Node.js SDK für die hightrusted CAPTURE API — forensische Web-Captures mit qualifiziertem Zeitstempel",
"type": "module",
"main": "./src/index.mjs",
"exports": {
".": {
"import": "./src/index.mjs"
}
},
"files": [
"src",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"engines": {
"node": ">=18"
},
"scripts": {
"test": "node --test test/*.test.mjs",
"lint": "eslint src/ test/"
},
"keywords": [
"capture",
"screenshot",
"rfc3161",
"timestamp",
"eidas",
"forensic",
"evidence",
"hightrusted"
],
"author": "hightrusted GmbH <developers@hightrusted.net>",
"license": "MIT",
"homepage": "https://capture.hightrusted.net",
"repository": {
"type": "git",
"url": "https://git.hightrusted.net/hightrusted-capture/node.git"
},
"bugs": {
"url": "https://git.hightrusted.net/hightrusted-capture/node/issues",
"email": "developers@hightrusted.net"
},
"devDependencies": {
"eslint": "^9.0.0"
}
}