44 lines
1.0 KiB
JSON
44 lines
1.0 KiB
JSON
{
|
|
"name": "@polymech/pdf",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"main": "dist/index.js",
|
|
"bin": {
|
|
"pdf-to-images": "dist/index.js"
|
|
},
|
|
"scripts": {
|
|
"dev": "tsc -p . --watch",
|
|
"build": "tsc",
|
|
"start": "node dist/index.js",
|
|
"test:pdf": "node dist/index.js convert --input tests/e5dc.pdf --output tests/out/e5dc/ --startPage 3 --endPage 5",
|
|
"test:basic": "vitest run",
|
|
"test:variables": "vitest run tests/cli/variables.test.ts"
|
|
},
|
|
"keywords": [
|
|
"pdf",
|
|
"images",
|
|
"convert",
|
|
"pdf-to-images"
|
|
],
|
|
"author": "Polymech",
|
|
"license": "ISC",
|
|
"type": "module",
|
|
"dependencies": {
|
|
"@polymech/commons": "file:../../../commons",
|
|
"@polymech/fs": "file:../../../fs",
|
|
"@types/yargs": "^17.0.33",
|
|
"init": "^0.1.2",
|
|
"mupdf": "^1.3.3",
|
|
"p-map": "^7.0.3",
|
|
"tslog": "^4.9.3",
|
|
"typescript": "^5.8.2",
|
|
"vitest": "^3.1.1",
|
|
"xlsx": "^0.18.5",
|
|
"yargs": "^17.7.2",
|
|
"zod": "^3.24.3"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.13.10"
|
|
}
|
|
}
|