-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1019 Bytes
/
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
{
"name": "@heng1025/epub-parse",
"version": "0.3.0",
"description": "epub parse,miniprogram",
"main": "dist/epub-parse.cjs.js",
"module": "dist/epub-parse.esm.js",
"miniprogram": "dist/epub-parse.cjs.js",
"types": "dist/epub-parse.d.ts",
"homepage": "https://github.com/heng1025/epub-parse",
"scripts": {
"watch": "rollup -c -w",
"demo": "serve .",
"prebuild": "rimraf dist",
"build": "rollup -c && node ./genTypes.mjs"
},
"files": [
"dist"
],
"keywords": [
"epub",
"xml"
],
"author": "heng1025",
"license": "MIT",
"prettier": {
"trailingComma": "all",
"singleQuote": true
},
"devDependencies": {
"@microsoft/api-extractor": "^7.19.4",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.0",
"rimraf": "^3.0.2",
"rollup": "^2.67.3",
"rollup-plugin-typescript2": "^0.31.2",
"serve": "^13.0.2",
"tslib": "^2.3.1",
"typescript": "^4.5.5"
}
}