89 lines
2.7 KiB
JSON
89 lines
2.7 KiB
JSON
{
|
|
"name": "jspdf-autotable",
|
|
"version": "3.8.4",
|
|
"description": "Generate pdf tables with javascript (jsPDF plugin)",
|
|
"main": "dist/jspdf.plugin.autotable.js",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/jspdf.plugin.autotable.js"
|
|
},
|
|
"./es": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/jspdf.plugin.autotable.mjs"
|
|
}
|
|
},
|
|
"types": "dist/index",
|
|
"files": [
|
|
"dist/*"
|
|
],
|
|
"browserslist": [
|
|
"last 2 versions",
|
|
"> 1%",
|
|
"IE 11"
|
|
],
|
|
"directories": {
|
|
"example": "examples"
|
|
},
|
|
"peerDependencies": {
|
|
"jspdf": "^2.5.1"
|
|
},
|
|
"prettier": {
|
|
"semi": false,
|
|
"singleQuote": true
|
|
},
|
|
"devDependencies": {
|
|
"@rollup/plugin-typescript": "^11.1.5",
|
|
"@types/mocha": "^10.0.2",
|
|
"@typescript-eslint/eslint-plugin": "^6.7.5",
|
|
"@typescript-eslint/parser": "^6.7.5",
|
|
"dts-bundle-generator": "^8.0.1",
|
|
"eslint": "^8.51.0",
|
|
"eslint-config-prettier": "^9.0.0",
|
|
"eslint-plugin-prettier": "^5.0.0",
|
|
"jsdom": "^22.1.0",
|
|
"jspdf": "^2.5.1",
|
|
"mocha": "^10.2.0",
|
|
"npm-check-updates": "^16.14.5",
|
|
"prettier": "^3.0.3",
|
|
"rollup": "^4.0.2",
|
|
"ts-loader": "^9.5.0",
|
|
"ts-node": "^10.9.1",
|
|
"tslib": "^2.6.2",
|
|
"typescript": "^5.2.2",
|
|
"webpack": "^5.88.2",
|
|
"webpack-cli": "^5.1.4",
|
|
"webpack-dev-server": "^4.15.1"
|
|
},
|
|
"scripts": {
|
|
"start": "webpack serve --config webpack.config.mjs --mode=development",
|
|
"checkout-pr": "git fetch origin pull/$PR/head:pr$PR && git checkout pr$PR",
|
|
"start-external": "webpack serve --config webpack.config.mjs --mode=development --host 0.0.0.0",
|
|
"build": "webpack --mode=production && webpack --mode=production --env minified && npm run buildes && npm run types",
|
|
"buildes": "rollup --config rollup.config.mjs",
|
|
"lint": "eslint . --ext .ts",
|
|
"test": "mocha -r ts-node/register test/test*.ts",
|
|
"format": "prettier --write src",
|
|
"version": "npm test && npm run build && git add -A dist",
|
|
"hosting": "git push origin master:gh-pages -f",
|
|
"deploy": "git push --follow-tags && npm run hosting && npm publish",
|
|
"update-libs": "cd examples/nodejs && ncu -u && npm i && cd ../typescript && ncu -u && npm i && cd ../webpack && ncu -u && npm i",
|
|
"types": "dts-bundle-generator src/main.ts -o ./dist/index.d.ts"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/simonbengtsson/jsPDF-AutoTable.git"
|
|
},
|
|
"keywords": [
|
|
"pdf",
|
|
"table",
|
|
"jspdf"
|
|
],
|
|
"author": "Simon Bengtsson <dev@simonbengtsson.com>",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/simonbengtsson/jsPDF-AutoTable/issues"
|
|
},
|
|
"homepage": "https://simonbengtsson.github.io/jsPDF-AutoTable"
|
|
}
|