-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
61 lines (61 loc) · 1.93 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
59
60
61
{
"name": "epublifier",
"description": "A tool to convert website based books or list of pages to ePub format to read on your eReader/Kindle/etc.",
"private": true,
"scripts": {
"watch": "webpack --env=browser_type=chrome --mode development --watch",
"watch_ff": "webpack --env=browser_type=firefox --mode development --watch",
"build": "webpack --env=browser_type=chrome --mode production",
"build_ff": "webpack --env=browser_type=firefox --mode production"
},
"repository": {
"type": "git",
"url": "https://github.com/maoserr/epublifier.git"
},
"keywords": [],
"author": "Mao Yu<[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/maoserr/epublifier/issues"
},
"homepage": "https://github.com/maoserr/epublifier#readme",
"devDependencies": {
"@mozilla/readability": "^0.5.0",
"@types/content-type": "^1.1.8",
"@types/papaparse": "^5.3.15",
"@types/prismjs": "^1.26.5",
"@types/webextension-polyfill": "^0.12.1",
"@vue/compiler-sfc": "^3.4.30",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"html-webpack-plugin": "^5.6.3",
"style-loader": "^4.0.0",
"terser-webpack-plugin": "^5.3.10",
"ts-loader": "^9.5.1",
"typescript": "^5.6.3",
"vue-loader": "^17.4.2",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
},
"dependencies": {
"@codemirror/lang-javascript": "^6.2.2",
"@medv/finder": "^3.2.0",
"@vueuse/core": "^10.11.1",
"async-parallel": "^1.2.3",
"buffer": "^6.0.3",
"codemirror": "^6.0.1",
"content-type": "^1.0.5",
"papaparse": "^5.4.1",
"path-browserify": "^1.0.1",
"primeflex": "^3.3.1",
"primeicons": "^7.0.0",
"primevue": "^3.53.0",
"prismjs": "^1.29.0",
"tsepub": "^1.1.29",
"vue": "^3.5.12",
"vue-codemirror": "^6.1.1",
"vue-prism-editor": "^2.0.0-alpha.2",
"webextension-polyfill": "^0.12.0"
}
}