-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.64 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"url": "https://gamedungeon.github.io/Tiddly2PDF/",
"license": "MIT",
"version": "0.1.6",
"scripts": {
"reset": "rimraf ./**/node_modules",
"clean": "rimraf dist",
"prepare": "husky install",
"update": "npm-check-updates -u",
"new": "tiddlywiki-plugin-dev new",
"dev": "tiddlywiki-plugin-dev dev",
"build": "yarn run clean && tiddlywiki-plugin-dev build",
"build:library": "yarn run clean && tiddlywiki-plugin-dev build --library --output dist/library",
"publish": "yarn run clean && tiddlywiki-plugin-dev publish",
"publish:offline": "yarn run clean && tiddlywiki-plugin-dev publish --offline"
},
"tsFiles": [
"src/ExportAsPDFWidget.ts"
],
"engines": {
"node": ">=18.12"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"node --max_old_space_size=8192 ./node_modules/eslint/bin/eslint.js --fix --color --cache --quiet"
],
"*.{js,jsx,mjs,mjsx,cjs,cjsx}": [
"node --max_old_space_size=8192 ./node_modules/eslint/bin/eslint.js --fix --color --cache --quiet"
]
},
"devDependencies": {
"@modern-js/eslint-config": "^2.22.1",
"@types/css": "^0.0.33",
"@types/html-to-pdfmake": "^2.4.1",
"@types/node": "^20.2.5",
"@types/pdfmake": "^0.2.2",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"rimraf": "^5.0.1",
"ts-node": "^10.9.1",
"tw5-typed": "^0.2.27",
"typescript": "^5.1.3"
},
"dependencies": {
"css": "^3.0.0",
"fflate": "^0.8.0",
"html-to-pdfmake": "^2.4.22",
"pdfmake": "^0.2.7",
"tiddlywiki": "^5.3.1",
"tiddlywiki-plugin-dev": "^0.0.36"
}
}