-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.55 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
58
{
"name": "teapub",
"version": "3.1.0",
"description": "generate epubs using typescript and preact",
"keywords": [
"preact",
"epub",
"typescript"
],
"repository": {
"type": "git",
"url": "https://github.com/erikbrinkman/teapub.git"
},
"author": {
"name": "Erik Brinkman",
"email": "[email protected]"
},
"license": "MIT",
"type": "module",
"types": "dist/index.d.ts",
"module": "dist/teapub.esm.min.js",
"files": [
"dist/**/*.js",
"dist/**/*.d.ts"
],
"scripts": {
"fmt": "prettier --cache --write 'src/**/*.{ts,tsx}' '*.json' '*.js'",
"lint": "tsc && eslint --cache 'src/**/*.{ts,tsx}' && typedoc --emit none",
"doc": "typedoc",
"export": "tsc -p tsconfig.build.json && bun build src/index.ts --minify --outfile dist/teapub.esm.min.js",
"prepack": "bun lint && bun test --coverage && bun export"
},
"dependencies": {
"jszip": "^3.10.1",
"leven": "^4.0.0",
"parse5": "^7.2.0",
"preact": "^10.24.2",
"preact-render-to-string": "^6.5.11",
"uuid": "^10.0.0"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"@types/bun": "^1.1.11",
"@types/sharp": "^0.32.0",
"@types/uuid": "^10.0.0",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-spellcheck": "^0.0.20",
"eslint-plugin-tsdoc": "^0.3.0",
"lorem-ipsum": "^2.0.8",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.1.0",
"sharp": "^0.33.5",
"typedoc": "^0.26.9",
"typescript": "^5.6.3",
"typescript-eslint": "^8.8.1"
}
}