-
-
Notifications
You must be signed in to change notification settings - Fork 83
/
package.json
42 lines (42 loc) · 1.63 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
{
"name": "copy-as-markdown",
"version": "2.0.0",
"description": "Copy Link or Image as Markdown code, a Web Extension",
"type": "module",
"engines": {
"node": ">= 20.0"
},
"scripts": {
"test": "node --test",
"compile": "npm run compile-chrome && npm run compile-firefox && npm run compile-firefox-mv3",
"compile-chrome": "node scripts/compile.js chrome",
"compile-firefox": "node scripts/compile.js firefox",
"compile-firefox-mv3": "node scripts/compile.js firefox-mv3",
"build-chrome": "npm run compile-chrome && zip -r build/chrome.zip chrome/",
"build-firefox": "npm run compile-firefox && npx web-ext build -s firefox/ -a build/firefox/",
"build-firefox-mv3": "npm run compile-firefox-mv3 && npx web-ext build -s firefox-mv3/ -a build/firefox-mv3/",
"debug-chrome": "node scripts/debug.js chrome",
"debug-edge": "node scripts/debug.js edge",
"debug-firefox-mv3": "node scripts/debug.js firefox-mv3",
"debug-firefox": "node scripts/debug.js firefox",
"eslint": "eslint .",
"clean": "rm -rf ./build/* firefox/dist/* firefox-mv3/dist/* chrome/dist/*",
"convert-images": "./scripts/convert-images.sh",
"postinstall": "node scripts/postinstall.js"
},
"license": "MIT",
"devDependencies": {
"@types/chrome": "^0.0.266",
"@types/firefox-webext-browser": "^120.0.1",
"@types/nodemon": "^1.19.6",
"bulma": "^1.0.0",
"eslint": "^8.9.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.18.2",
"mustache": "^4.2.0",
"nodemon": "^3.1.0",
"turndown": "^7.1.3",
"typescript": "^5.4.0",
"webextension-polyfill": "^0.12.0"
}
}