mirror of
https://github.com/flatulentfowl/docdrop.git
synced 2026-07-22 17:00:32 +00:00
- Resolves Node.js type references in source code - Enables proper type checking for process and child_process imports
24 lines
638 B
JSON
24 lines
638 B
JSON
{
|
|
"name": "docdrop",
|
|
"version": "1.0.0",
|
|
"description": "Convert PDF files to Markdown using Microsoft's markitdown CLI.",
|
|
"main": "main.js",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "node esbuild.config.mjs",
|
|
"build": "tsc --noEmit --skipLibCheck && node esbuild.config.mjs production",
|
|
"lint": "eslint \"**/*.ts\""
|
|
},
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"obsidian": "latest"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.19.19",
|
|
"@typescript-eslint/parser": "^8.59.1",
|
|
"esbuild": "^0.25.5",
|
|
"eslint": "^9.39.4",
|
|
"eslint-plugin-obsidianmd": "^0.2.9",
|
|
"typescript": "^5.8.3"
|
|
}
|
|
}
|