Files
pdfme/package.json
dependabot[bot] 865de88452 Bump @babel/core from 7.27.7 to 7.28.3 (#1168)
Bumps [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) from 7.27.7 to 7.28.3.
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.28.3/packages/babel-core)

---
updated-dependencies:
- dependency-name: "@babel/core"
  dependency-version: 7.28.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-12 19:45:11 +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.3",
"@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.35.1",
"@typescript-eslint/parser": "^8.32.0",
"babel-loader": "^10.0.0",
"eslint": "^9.30.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.5.1",
"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.3.4",
"ts-jest-resolver": "^2.0.1",
"ts-loader": "^9.2.5",
"ts-prune": "^0.10.3",
"typescript": "^5.8.3"
}
}