mirror of
https://github.com/pdfme/pdfme.git
synced 2026-06-02 11:17:32 -04:00
* feat(jsx): add pdfme jsx package * refactor(jsx): derive text props from schema types * fix(jsx): tighten mvp layout constraints * feat(jsx): measure text height with schema helpers * docs: update jsx md2pdf roadmap
68 lines
1.6 KiB
JSON
68 lines
1.6 KiB
JSON
{
|
|
"name": "@pdfme/jsx",
|
|
"version": "0.0.0",
|
|
"description": "Author pdfme templates with JSX stacking layout primitives.",
|
|
"keywords": [
|
|
"jsx",
|
|
"pdf",
|
|
"pdf-generation",
|
|
"pdfme",
|
|
"template"
|
|
],
|
|
"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"
|
|
},
|
|
"./jsx-runtime": {
|
|
"types": "./dist/jsx-runtime.d.ts",
|
|
"import": "./dist/jsx-runtime.js",
|
|
"default": "./dist/jsx-runtime.js"
|
|
},
|
|
"./jsx-dev-runtime": {
|
|
"types": "./dist/jsx-dev-runtime.d.ts",
|
|
"import": "./dist/jsx-dev-runtime.js",
|
|
"default": "./dist/jsx-dev-runtime.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"
|
|
},
|
|
"devDependencies": {
|
|
"@pdfme/common": "*",
|
|
"@pdfme/schemas": "*"
|
|
},
|
|
"peerDependencies": {
|
|
"@pdfme/common": "latest",
|
|
"@pdfme/schemas": "latest"
|
|
}
|
|
}
|