Files
papra/packages/webhooks/package.json
Corentin Thomasset f903c33d26 chore(release): update versions (#700)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-12-21 19:05:52 +01:00

59 lines
1.4 KiB
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"
],
"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",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"@corentinth/chisels": "catalog:",
"@paralleldrive/cuid2": "^2.2.2",
"ofetch": "^1.4.1",
"tsee": "^1.3.4"
},
"devDependencies": {
"@antfu/eslint-config": "catalog:",
"eslint": "catalog:",
"standardwebhooks": "^1.0.0",
"tsdown": "catalog:",
"typescript": "catalog:",
"vitest": "catalog:"
}
}