- 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
49 lines
1.1 KiB
JSON
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"
|
|
}
|
|
}
|