@papra/api-sdk
Version:
Api SDK for Papra, the document archiving platform.
54 lines • 1.21 kB
JSON
{
"name": "@papra/api-sdk",
"type": "module",
"version": "1.0.2",
"description": "Api SDK 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/api-sdk"
},
"bugs": {
"url": "https://github.com/papra-hq/papra/issues"
},
"keywords": [
"papra",
"api",
"sdk",
"document",
"archiving",
"storage"
],
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"dependencies": {
"@corentinth/chisels": "^1.3.0",
"ofetch": "^1.4.1"
},
"devDependencies": {
"@antfu/eslint-config": "^4.16.2",
"eslint": "^9.30.1",
"typescript": "^5.6.2",
"unbuild": "^3.5.0",
"vitest": "^3.0.5"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "vitest run",
"test:watch": "vitest watch",
"typecheck": "tsc --noEmit",
"build": "unbuild"
}
}