omnivore/packages/pdf-handler/package.json
dependabot[bot] 80b8c4b3ed
Bump pdfjs-dist from 2.16.105 to 5.4.54 (#4598)
* Bump pdfjs-dist from 2.16.105 to 5.4.54

Bumps [pdfjs-dist](https://github.com/mozilla/pdf.js) from 2.16.105 to 5.4.54.
- [Release notes](https://github.com/mozilla/pdf.js/releases)
- [Commits](https://github.com/mozilla/pdf.js/compare/v2.16.105...v5.4.54)

---
updated-dependencies:
- dependency-name: pdfjs-dist
  dependency-version: 5.4.54
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* Bump pdfjs-dist from 2.16.105 to 5.4.54

Bumps [pdfjs-dist](https://github.com/mozilla/pdf.js) from 2.16.105 to 5.4.54.
- [Release notes](https://github.com/mozilla/pdf.js/releases)
- [Commits](https://github.com/mozilla/pdf.js/compare/v2.16.105...v5.4.54)

---
updated-dependencies:
- dependency-name: pdfjs-dist
  dependency-version: 5.4.54
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* fix(): update pdfjs to latest-working version

* fix(): update pdfjs to latest-working version

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Thomas Rogers <podginator@gmail.com>
2025-08-06 16:59:26 +02:00

44 lines
1.4 KiB
JSON

{
"name": "@omnivore/pdf-handler",
"version": "1.0.0",
"description": "",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"files": [
"build/src"
],
"license": "Apache-2.0",
"keywords": [],
"scripts": {
"test": "yarn mocha -r ts-node/register --config mocha-config.json",
"test:typecheck": "tsc --noEmit",
"lint": "eslint src --ext ts,js,tsx,jsx",
"compile": "tsc",
"build": "tsc",
"start": "functions-framework --source=build/src/ --target=pdfHandler",
"dev": "concurrently \"tsc -w\" \"nodemon --watch ./build/ --exec npm run start\"",
"gcloud-deploy": "gcloud functions deploy pdfHandler --region=$npm_config_region --runtime nodejs14 --trigger-bucket=$npm_config_bucket --env-vars-file=../gcf-shared/env-$npm_config_env.yaml",
"deploy": "yarn build && yarn gcloud-deploy"
},
"devDependencies": {
"@types/node": "^14.11.2",
"chai": "^4.3.6",
"chai-string": "^1.5.0",
"mocha": "^10.0.0"
},
"dependencies": {
"@google-cloud/functions-framework": "3.4.5",
"@google-cloud/pubsub": "^4.0.0",
"@google-cloud/storage": "^7.0.1",
"@omnivore/utils": "1.0.0",
"@sentry/serverless": "^7.77.0",
"axios": "^0.30.0",
"bullmq": "^5.1.4",
"concurrently": "^7.0.0",
"dotenv": "^8.2.0",
"pdfjs-dist": "^5.3.93"
},
"volta": {
"extends": "../../package.json"
}
}