Files
pdfme/package.json
dependabot[bot] 968dddea63 build(deps-dev): bump typescript from 5.8.3 to 5.9.3 (#1211)
* build(deps-dev): bump typescript from 5.8.3 to 5.9.3

Bumps [typescript](https://github.com/microsoft/TypeScript) from 5.8.3 to 5.9.3.
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml)
- [Commits](https://github.com/microsoft/TypeScript/compare/v5.8.3...v5.9.3)

---
updated-dependencies:
- dependency-name: typescript
  dependency-version: 5.9.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

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

* Apply TypeScript 5.9 compatibility changes

- Update Uint8Array types to Uint8Array<ArrayBuffer> for TypeScript 5.9 compatibility
- Changes based on PR #1145 comment by bnarnold

Co-Authored-By: Kyohei Fukuda <kyoheif@wix.com>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
Co-authored-by: Kyohei Fukuda <kyoheif@wix.com>
2025-11-09 08:32:15 +09:00

80 lines
2.8 KiB
JSON

{
"name": "root",
"version": "0.0.0",
"private": true,
"author": "hand-dot",
"license": "MIT",
"keywords": [
"pdf",
"pdf-generation",
"pdf-designer",
"pdf-viewer",
"typescript",
"react"
],
"description": "TypeScript base PDF generator and React base UI. Open source, developed by the community, and completely free to use under the MIT license!",
"homepage": "https://pdfme.com",
"repository": {
"type": "git",
"url": "git@github.com:pdfme/pdfme.git"
},
"bugs": {
"url": "https://github.com/pdfme/pdfme/issues"
},
"workspaces": [
"packages/common",
"packages/pdf-lib",
"packages/converter",
"packages/schemas",
"packages/generator",
"packages/manipulator",
"packages/ui"
],
"scripts": {
"postinstall": "./scripts/link-workspaces.sh",
"clean": "npm-run-all --parallel clean:*",
"clean:common": "npm run -w packages/common clean",
"clean:pdf-lib": "npm run -w packages/pdf-lib clean",
"clean:converter": "npm run -w packages/converter clean",
"clean:schemas": "npm run -w packages/schemas clean",
"clean:generator": "npm run -w packages/generator clean",
"clean:manipulator": "npm run -w packages/manipulator clean",
"clean:ui": "npm run -w packages/ui clean",
"build": "npm run clean && npm run build:pdf-lib && npm run build:common && npm run build:converter && npm run build:schemas && npm-run-all --parallel build:generator build:ui build:manipulator",
"build:common": "npm run -w packages/common build",
"build:pdf-lib": "npm run -w packages/pdf-lib build",
"build:converter": "npm run -w packages/converter build",
"build:schemas": "npm run -w packages/schemas build",
"build:generator": "npm run -w packages/generator build",
"build:manipulator": "npm run -w packages/manipulator build",
"build:ui": "npm run -w packages/ui build",
"test": "npm run test --workspaces",
"test:ui:update-snapshots": "npm run -w packages/ui test -- -u",
"lint": "npm run lint --workspaces",
"prettier": "npm run prettier --workspaces"
},
"devDependencies": {
"@babel/core": "^7.28.4",
"@humanwhocodes/config-array": "^0.13.0",
"@types/jest": "^29.5.14",
"@types/jest-image-snapshot": "^6.4.0",
"@types/node": "^24.3.0",
"@typescript-eslint/eslint-plugin": "^8.46.2",
"@typescript-eslint/parser": "^8.32.0",
"babel-loader": "^10.0.0",
"eslint": "^9.39.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"jest": "^29.7.0",
"jest-image-snapshot": "^6.5.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"ts-jest": "^29.4.4",
"ts-jest-resolver": "^2.0.1",
"ts-loader": "^9.5.4",
"ts-prune": "^0.10.3",
"typescript": "^5.9.3"
}
}