@papra/cli
Version:
Command line interface for Papra, the document archiving platform.
69 lines • 1.66 kB
JSON
{
"name": "@papra/cli",
"type": "module",
"version": "0.2.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"
],
"exports": {
".": "./dist/cli.js",
"./package.json": "./package.json"
},
"main": "./dist/cli.js",
"module": "./dist/cli.js",
"types": "./dist/cli.d.ts",
"bin": {
"papra": "./bin/papra.mjs"
},
"files": [
"bin",
"dist"
],
"dependencies": {
"@clack/prompts": "^1.0.0-alpha.6",
"@corentinth/chisels": "2.1.0",
"citty": "^0.1.6",
"conf": "^13.1.0",
"jszip": "^3.10.1",
"mime-types": "^3.0.1",
"ofetch": "^1.4.1",
"picocolors": "^1.1.1",
"valibot": "1.0.0-beta.10",
"@papra/api-sdk": "1.1.3"
},
"devDependencies": {
"@antfu/eslint-config": "^6.2.0",
"@types/mime-types": "^2.1.4",
"@types/node": "^24.0.0",
"eslint": "^9.39.1",
"tsdown": "^0.13.4",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vitest": "4.0.3"
},
"scripts": {
"dev": "tsx ./src/cli.ts",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "vitest run --passWithNoTests",
"test:watch": "vitest watch",
"typecheck": "tsc --noEmit",
"build": "tsdown",
"build:watch": "tsdown --watch"
}
}