Files
pdfme/packages/common/package.json
2023-05-23 10:20:41 +01:00

74 lines
1.6 KiB
JSON

{
"name": "@pdfme/common",
"version": "1.1.9",
"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": "./dist/esm/src/index.js",
"require": "./dist/cjs/src/index.js"
}
},
"engines": {
"node": ">=14"
},
"scripts": {
"develop": "tsc -w",
"build": "npm run build:cjs && npm run build:esm",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"clean": "rimraf dist",
"lint": "tsc --noEmit",
"test": "jest",
"lint:watch": "tsc -w --noEmit",
"test:watch": "jest --coverage --watch",
"prune": "ts-prune src"
},
"dependencies": {
"fontkit": "^2.0.2",
"zod": "^3.20.2"
},
"jest": {
"resolver": "ts-jest-resolver",
"moduleFileExtensions": [
"js",
"ts"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.esm.json"
}
},
"testMatch": [
"**/*.test.ts"
]
},
"publishConfig": {
"access": "public"
}
}