{ "name": "pdf-to-markdown-plugin", "version": "0.0.1", "description": "Extract the text from a PDF to a Markdown file.", "main": "main.js", "type": "module", "scripts": { "dev": "rollup --config rollup.config.js -w", "build": "rollup --config rollup.config.js", "test": "cross-env TS_NODE_COMPILER_OPTIONS='{ \"module\": \"commonjs\" }' mocha -r ts-node/register -r ignore-styles -r jsdom-global/register test/**/*.ts", "test:watch": "cross-env TS_NODE_COMPILER_OPTIONS='{ \"module\": \"commonjs\" }' mocha -r ts-node/register -r ignore-styles -r jsdom-global/register --watch --watch-files src, test/**/*.ts" }, "keywords": [], "author": "", "license": "MIT", "devDependencies": { "@rollup/plugin-commonjs": "^15.1.0", "@rollup/plugin-node-resolve": "^9.0.0", "@rollup/plugin-typescript": "^6.0.0", "@types/chai": "^4.2.14", "@types/mocha": "^8.2.0", "@types/node": "^14.14.16", "chai": "^4.2.0", "cross-env": "^7.0.2", "ignore-styles": "^5.0.1", "jsdom": "^16.4.0", "jsdom-global": "^3.0.2", "mocha": "^8.2.1", "obsidian": "https://github.com/obsidianmd/obsidian-api/tarball/master", "rollup": "^2.35.1", "ts-node": "^9.1.1", "tslib": "^1.14.1", "typescript": "^4.1.3" }, "dependencies": { "@opendocsg/pdf2md": "^0.1.21", "electron": "^10.2.0", "pdfjs-dist": "^2.6.347" } }