Files
pdfme/packages/ui/package.json
hand-dot c759a120d7 feat: update test script to run workspace tests and refactor schema imports
- Changed the test script in package.json to run workspace tests using a new script.
- Updated imports in generator and helper files to point to specific schema paths.
- Added new builtins and tables exports in schemas package.json and created corresponding files.
- Enhanced error handling in multiVariableText propPanel for JSON parsing.
- Refactored UI components to use React 18 and updated dependencies accordingly.
- Improved snapshot tests to ensure cleaner output by removing empty text nodes.
- Updated documentation to reflect changes in package usage and requirements.
2026-03-21 16:10:48 +09:00

81 lines
2.1 KiB
JSON

{
"name": "@pdfme/ui",
"version": "0.0.0",
"description": "TypeScript base PDF generator and React base UI. Open source, developed by the community, and completely free to use under the MIT license!",
"keywords": [
"pdf",
"pdf-designer",
"pdf-generation",
"pdf-viewer",
"react",
"typescript"
],
"homepage": "https://pdfme.com",
"bugs": {
"url": "https://github.com/pdfme/pdfme/issues"
},
"license": "MIT",
"author": "hand-dot",
"repository": {
"type": "git",
"url": "git@github.com:pdfme/pdfme.git"
},
"type": "module",
"sideEffects": false,
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "vite build --watch",
"build": "vite build && tsc -p tsconfig.build.json",
"clean": "rimraf dist",
"lint": "vp lint -c ../../.oxlintrc.json src",
"fmt": "vp fmt -c ../../.oxfmtrc.json src --write",
"test": "vitest run --config ../../vitest.config.ts"
},
"dependencies": {
"@dnd-kit/core": "^6.0.8",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@pdfme/converter": "*",
"@scena/react-guides": "^0.28.2",
"antd": "^5.27.4",
"dompurify": "^3.3.3",
"form-render": "^2.5.5",
"hotkeys-js": "^4.0.2",
"lucide-react": "^0.577.0",
"rc-field-form": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-moveable": "^0.56.0",
"react-selecto": "^1.12.0"
},
"devDependencies": {
"@pdfme/common": "*",
"@pdfme/schemas": "*",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react": "^6.0.1",
"csstype": "^3.2.3",
"vite": "^7.3.1",
"vite-plugin-css-injected-by-js": "^4.0.1",
"vite-tsconfig-paths": "^6.1.1"
},
"peerDependencies": {
"@pdfme/common": "latest",
"@pdfme/schemas": "latest"
}
}