-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 864 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
{
"name": "reading-planner",
"version": "1.0.6",
"description": "Generate reading plan based on EPUB file and reading habit interval",
"preferGlobal": true,
"main": "index.js",
"repository": "git@github.com:Mhdi-kr/reading-planner.git",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "ts-node index.ts",
"build": "tsc",
"start": "tsc && node dist/index.js"
},
"keywords": [],
"author": "Mahdi Karimi <mhdi_kr@outlook.com>",
"license": "ISC",
"bin": {
"reading-planner": "./dist/index.js"
},
"devDependencies": {
"@types/pdf-parse": "^1.1.1",
"@types/pdfkit": "^0.12.8",
"@types/node": "^18.11.19",
"typescript": "^4.9.5"
},
"dependencies": {
"epub": "^1.2.1",
"epub2": "^3.0.1",
"ics": "^2.44.0",
"rambda": "^7.4.0",
"reading-time": "^1.5.0"
}
}