@papra/cli
Version:
Command line interface for Papra, the document archiving platform.
61 lines • 1.44 kB
JSON
{
"name": "@papra/cli",
"type": "module",
"version": "0.0.2",
"description": "Command line interface 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/cli"
},
"bugs": {
"url": "https://github.com/papra-hq/papra/issues"
},
"keywords": [
"papra",
"cli",
"document",
"archiving",
"storage"
],
"main": "./dist/cli.cjs",
"module": "./dist/cli.mjs",
"bin": {
"papra": "./bin/papra.mjs"
},
"files": [
"bin",
"dist"
],
"dependencies": {
"@clack/prompts": "^0.10.1",
"@corentinth/chisels": "^1.3.1",
"citty": "^0.1.6",
"conf": "^13.1.0",
"mime-types": "^3.0.1",
"ofetch": "^1.4.1",
"valibot": "1.0.0-beta.10",
"@papra/api-sdk": "1.0.2"
},
"devDependencies": {
"@antfu/eslint-config": "^4.16.2",
"@types/mime-types": "^2.1.4",
"@types/node": "^22.15.21",
"eslint": "^9.30.1",
"tsx": "^4.19.3",
"typescript": "^5.6.2",
"unbuild": "^3.5.0",
"vitest": "^3.0.5"
},
"scripts": {
"dev": "tsx ./src/cli.ts",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "vitest run",
"test:watch": "vitest watch",
"typecheck": "tsc --noEmit",
"build": "unbuild"
}
}