mirror of
https://github.com/pdfme/pdfme.git
synced 2026-06-16 02:09:10 -04:00
85 lines
2.2 KiB
JSON
85 lines
2.2 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"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"README.md"
|
|
],
|
|
"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": "^6.4.3",
|
|
"dompurify": "^3.4.7",
|
|
"form-render": "^2.5.5",
|
|
"hotkeys-js": "^4.0.4",
|
|
"lucide-react": "^1.17.0",
|
|
"rc-field-form": "^2.7.1",
|
|
"react": "^19.2.7",
|
|
"react-dom": "^19.2.7",
|
|
"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": "^19.2.17",
|
|
"@types/react-dom": "^19.2.3",
|
|
"@vitejs/plugin-react": "^6.0.2",
|
|
"csstype": "^3.2.3",
|
|
"vite": "^8.0.14",
|
|
"vite-plugin-css-injected-by-js": "^5.0.1",
|
|
"vite-tsconfig-paths": "^6.1.1"
|
|
},
|
|
"peerDependencies": {
|
|
"@pdfme/common": "latest",
|
|
"@pdfme/schemas": "latest"
|
|
}
|
|
}
|