Files
pdfme/packages/ui/package.json
2023-03-05 14:57:07 +09:00

98 lines
2.4 KiB
JSON

{
"name": "@pdfme/ui",
"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/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": {
"@dnd-kit/core": "^5.0.1",
"@dnd-kit/sortable": "^6.0.0",
"@heroicons/react": "^2.0.13",
"@pdfme/common": "^1.0.0",
"@scena/react-guides": "^0.16.0",
"hotkeys-js": "^3.8.7",
"pdfjs-dist": "^2.12.313",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-moveable": "^0.30.3",
"react-selecto": "^1.12.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@types/pdfjs-dist": "^2.7.4",
"@types/react": "^17.0.52",
"@types/react-dom": "^17.0.18",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"jest-canvas-mock": "^2.3.1",
"process": "^0.11.10",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"worker-loader": "^3.0.8"
},
"jest": {
"setupFiles": [
"jest-canvas-mock"
],
"moduleNameMapper": {
"\\.(png)$": "<rootDir>/../../assetsTransformer.js"
},
"resolver": "ts-jest-resolver",
"moduleFileExtensions": [
"js",
"ts",
"tsx"
],
"transform": {
"^.+\\.ts$": "ts-jest",
"^.+\\.tsx$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.json"
}
},
"testMatch": [
"**/*.test.ts",
"**/*.test.tsx"
]
},
"publishConfig": {
"access": "public"
}
}