@papra/webhooks
Version:
Webhooks helper library for Papra, the document archiving platform.
57 lines • 1.38 kB
JSON
{
"name": "@papra/webhooks",
"type": "module",
"version": "0.3.2",
"description": "Webhooks helper library for Papra, the document archiving platform.",
"author": "Corentin Thomasset <corentinth@proton.me> (https://corentin.tech)",
"license": "AGPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/papra-hq/papra",
"directory": "packages/webhooks"
},
"bugs": {
"url": "https://github.com/papra-hq/papra/issues"
},
"keywords": [
"papra",
"webhooks",
"document",
"archiving",
"storage"
],
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"dependencies": {
"@corentinth/chisels": "2.1.0",
"@paralleldrive/cuid2": "^2.2.2",
"ofetch": "^1.4.1",
"tsee": "^1.3.4"
},
"devDependencies": {
"@antfu/eslint-config": "^6.2.0",
"eslint": "^9.39.1",
"standardwebhooks": "^1.0.0",
"tsdown": "^0.13.4",
"typescript": "^5.9.3",
"vitest": "4.0.3"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "vitest run",
"test:watch": "vitest watch",
"typecheck": "tsc --noEmit",
"build": "tsdown",
"build:watch": "tsdown --watch",
"dev": "pnpm build:watch"
}
}