forked from AlenToma/Epub-Constructor
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.26 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.26 KB
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
{
"name": "@cd-z/epub-constructor",
"version": "3.0.2",
"description": "This is a react library that creates an epub structure. This library only provides the file structure. To get a valid epub file it is needed to to create files from the provided data and compress them to a epub file.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "bun x tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CD-Z/Epub-Constructor.git"
},
"bugs": {
"url": "https://github.com/CD-Z/Epub-Constructor/issues"
},
"homepage": "https://github.com/CD-Z/Epub-Constructor",
"keywords": [
"epub",
"react",
"epub-creator",
"epub-constructor"
],
"dependencies": {
"sanitize-html": "^2.13.0"
},
"author": "Alen Toma & Patrick Loser",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.3",
"@types/sanitize-html": "^2.11.0",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"bun-types": "^1.1.4",
"eslint": "^8.42.0",
"typescript": "^5.1.3"
},
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
}
}