Files
pdfme/package.json
ryoppippi 38eeecb3ed chore: replace npm-run-all with npm-run-all2 (#1288)
* chore: replace npm-run-all with npm-run-all2

* chore: replace npm-run-all with npm-run-all2 and use run-p shorthand
2025-12-05 09:42:53 +09:00

80 lines
2.7 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": "run-p 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 && run-p 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-all2": "^7.0.2",
"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"
}
}