-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.42 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.42 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
{
"name": "webmd-chrome-extension",
"version": "1.0.0",
"description": "Convert any webpage to clean, portable Markdown. Chrome extension with intelligent article extraction and GitHub Flavored Markdown support.",
"main": "index.js",
"scripts": {
"build": "webpack --mode production",
"dev": "webpack --mode development --watch",
"clean": "rm -rf dist",
"copy-libs": "mkdir -p dist/lib && cp node_modules/@mozilla/readability/Readability.js dist/lib/readability.min.js && cp node_modules/turndown/dist/turndown.js dist/lib/turndown.min.js && cp node_modules/turndown-plugin-gfm/dist/turndown-plugin-gfm.js dist/lib/turndown-plugin-gfm.min.js",
"bundle": "npm run clean && npm run build && npm run copy-libs"
},
"keywords": [
"chrome-extension",
"markdown",
"readability",
"turndown",
"article-extraction"
],
"author": "Levin Dixon",
"repository": {
"type": "git",
"url": "git+https://github.com/levindixon/anything-to-md.git"
},
"bugs": {
"url": "https://github.com/levindixon/anything-to-md/issues"
},
"homepage": "https://github.com/levindixon/anything-to-md#readme",
"license": "MIT",
"dependencies": {
"@mozilla/readability": "^0.5.0",
"turndown": "^7.2.0",
"turndown-plugin-gfm": "^1.0.2"
},
"devDependencies": {
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"copy-webpack-plugin": "^12.0.2",
"terser-webpack-plugin": "^5.3.10"
}
}