mirror of
https://github.com/pdfme/pdfme.git
synced 2026-02-19 23:35:10 -05:00
Bumps [zod](https://github.com/colinhacks/zod) from 4.1.13 to 4.3.6. - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](https://github.com/colinhacks/zod/compare/v4.1.13...v4.3.6) --- updated-dependencies: - dependency-name: zod dependency-version: 4.3.6 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
85 lines
2.0 KiB
JSON
85 lines
2.0 KiB
JSON
{
|
|
"name": "@pdfme/common",
|
|
"version": "0.0.0",
|
|
"sideEffects": false,
|
|
"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"
|
|
},
|
|
"main": "dist/cjs/src/index.js",
|
|
"module": "dist/esm/src/index.js",
|
|
"types": "dist/types/src/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"import": {
|
|
"node": "./dist/node/src/index.js",
|
|
"default": "./dist/esm/src/index.js"
|
|
},
|
|
"require": "./dist/cjs/src/index.js",
|
|
"types": "./dist/types/src/index.d.ts"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"dev": "node set-version.js && tsc -p tsconfig.esm.json -w",
|
|
"prebuild": "node set-version.js",
|
|
"build": "run-p build:cjs build:esm build:node",
|
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
"build:esm": "tsc -p tsconfig.esm.json",
|
|
"build:node": "tsc -p tsconfig.node.json",
|
|
"clean": "rimraf dist",
|
|
"lint": "eslint --ext .ts src --config eslint.config.mjs",
|
|
"test": "jest",
|
|
"prune": "ts-prune src",
|
|
"prettier": "prettier --write 'src/**/*.ts'"
|
|
},
|
|
"dependencies": {
|
|
"@pdfme/pdf-lib": "*",
|
|
"acorn": "^8.15.0",
|
|
"buffer": "^6.0.3",
|
|
"zod": "^4.3.6"
|
|
},
|
|
"peerDependencies": {
|
|
"antd": "^5.11.2",
|
|
"form-render": "^2.2.20"
|
|
},
|
|
"jest": {
|
|
"resolver": "ts-jest-resolver",
|
|
"moduleFileExtensions": [
|
|
"js",
|
|
"ts"
|
|
],
|
|
"transform": {
|
|
"^.+\\.ts?$": [
|
|
"ts-jest",
|
|
{
|
|
"tsconfig": "tsconfig.esm.json"
|
|
}
|
|
]
|
|
},
|
|
"testMatch": [
|
|
"**/*.test.ts"
|
|
]
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"devDependencies": {
|
|
"@types/estree": "^1.0.6"
|
|
}
|
|
}
|