feature: generate pdf from actor

This commit is contained in:
Matthieu CAILLEAUX
2021-10-16 23:58:31 +02:00
parent 1babf13dae
commit f96372b236
18 changed files with 1826 additions and 14 deletions

View File

@@ -1,18 +1,25 @@
{
"scripts": {
"build": "tsc -p tsconfig.json && cp -r ./src ./dist",
"package": "sh ./package.sh"
"old-build": "tsc -p tsconfig.json && cp -r ./src ./dist",
"package": "sh ./package.sh",
"build": "webpack"
},
"devDependencies": {
"@league-of-foundry-developers/foundry-vtt-types": "0.8.8-8",
"husky": "4.3.7",
"prettier": "2.2.1",
"pretty-quick": "3.1.0",
"typescript": "4.3.5"
"typescript": "4.3.5",
"ts-loader": "9.2.6",
"webpack": "5.58.2",
"webpack-cli": "4.9.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"jspdf": "2.4.0"
}
}