-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.65 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
49
50
51
52
53
54
55
56
57
58
{
"name": "html2md",
"version": "1.0.0",
"description": "Browser extension that converts selected HTML elements to Markdown in DevTools",
"keywords": [
"html",
"markdown",
"devtools",
"browser-extension",
"webextension"
],
"author": "auy",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/auy/HTML2MD.git"
},
"bugs": {
"url": "https://github.com/auy/HTML2MD/issues"
},
"homepage": "https://github.com/auy/HTML2MD#readme",
"private": true,
"engines": {
"node": ">=20"
},
"scripts": {
"build": "webpack --mode=production --env browser=chrome",
"build:chrome": "webpack --mode=production --env browser=chrome",
"build:firefox": "webpack --mode=production --env browser=firefox",
"dev": "webpack --mode=development --watch",
"start": "node scripts/start.js --chrome",
"start:chrome": "node scripts/start.js --chrome",
"start:edge": "node scripts/start.js --edge",
"start:firefox": "node scripts/start.js --firefox",
"lint": "npm run build:firefox && web-ext lint --source-dir=dist",
"package": "node scripts/package.js"
},
"devDependencies": {
"@puppeteer/browsers": "^2.12.1",
"archiver": "^8.0.0",
"copy-webpack-plugin": "^11.0.0",
"license-webpack-plugin": "^4.0.2",
"web-ext": "^10.3.0",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@joplin/turndown-plugin-gfm": "^1.0.67",
"dompurify": "^3.4.9",
"marked": "^18.0.5",
"turndown": "^7.2.4",
"webextension-polyfill": "^0.12.0"
},
"overrides": {
"serialize-javascript": "^7.0.5",
"shell-quote": "^1.8.4"
}
}