mirror of
https://github.com/pdfme/pdfme.git
synced 2026-04-18 21:19:10 -04:00
84 lines
2.1 KiB
JSON
84 lines
2.1 KiB
JSON
{
|
|
"name": "@pdfme/schemas",
|
|
"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"
|
|
},
|
|
"./builtins": {
|
|
"types": "./dist/builtins.d.ts",
|
|
"import": "./dist/builtins.js",
|
|
"default": "./dist/builtins.js"
|
|
},
|
|
"./tables": {
|
|
"types": "./dist/tables.d.ts",
|
|
"import": "./dist/tables.js",
|
|
"default": "./dist/tables.js"
|
|
},
|
|
"./utils": {
|
|
"types": "./dist/utils.d.ts",
|
|
"import": "./dist/utils.js",
|
|
"default": "./dist/utils.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": {
|
|
"@pdfme/pdf-lib": "*",
|
|
"air-datepicker": "^3.6.0",
|
|
"bwip-js": "^4.9.0",
|
|
"date-fns": "^4.1.0",
|
|
"dompurify": "^3.3.3",
|
|
"fontkit": "^2.0.2",
|
|
"lucide": "^0.577.0",
|
|
"signature_pad": "^4.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@pdfme/common": "*",
|
|
"@types/bwip-js": "^3.2.1",
|
|
"@types/fontkit": "^2.0.9",
|
|
"@types/pngjs": "^6.0.2",
|
|
"csstype": "^3.2.3",
|
|
"jsqr": "^1.4.0",
|
|
"pngjs": "^7.0.0"
|
|
},
|
|
"peerDependencies": {
|
|
"@pdfme/common": "latest"
|
|
}
|
|
}
|