mirror of
https://github.com/pdfme/pdfme.git
synced 2026-06-03 20:06:26 -04:00
66 lines
1.4 KiB
JSON
66 lines
1.4 KiB
JSON
{
|
|
"name": "@pdfme/common",
|
|
"version": "1.0.13",
|
|
"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/index.js",
|
|
"module": "dist/index.js",
|
|
"types": "dist/types/index.d.ts",
|
|
"engines": {
|
|
"node": ">=14"
|
|
},
|
|
"scripts": {
|
|
"develop": "webpack --watch --mode development",
|
|
"build": "NODE_ENV=production webpack --mode production",
|
|
"clean": "rimraf dist",
|
|
"lint": "tsc --noEmit",
|
|
"test": "jest",
|
|
"lint:watch": "tsc -w --noEmit",
|
|
"test:watch": "jest --coverage --watch",
|
|
"prune": "ts-prune src"
|
|
},
|
|
"dependencies": {
|
|
"zod": "^3.11.6"
|
|
},
|
|
"jest": {
|
|
"moduleNameMapper": {
|
|
"\\.(ttf)$": "<rootDir>../../fontTransformer.js"
|
|
},
|
|
"moduleFileExtensions": [
|
|
"js",
|
|
"ts"
|
|
],
|
|
"transform": {
|
|
"^.+\\.ts$": "ts-jest"
|
|
},
|
|
"globals": {
|
|
"ts-jest": {
|
|
"tsconfig": "tsconfig.json"
|
|
}
|
|
},
|
|
"testMatch": [
|
|
"**/*.test.ts"
|
|
]
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|