-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.15 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
{
"name": "remarkable-firefox",
"version": "0.2.0",
"description": "Unofficial firefox extension letting you read web articles on your reMarkable with a click.",
"scripts": {
"start": "WEB_EXT_IGNORE_FILES=js web-ext run --firefox-preview --verbose",
"lint": "WEB_EXT_IGNORE_FILES=js web-ext lint",
"build-js": "rollup --config rollup.config.mjs",
"build-web-ext": "WEB_EXT_IGNORE_FILES=js web-ext build --overwrite-dest",
"build": "npm run build-js && npm run build-web-ext"
},
"author": "Henrik Lilleengen",
"license": "MPL-2.0",
"contributions": [
{
"what": {
"name": "epub-creator",
"url": "https://github.com/NiklasGollenstede/epub-creator"
},
"who": [
"Niklas Gollenstede"
],
"license": {
"name": "MPL 2.0",
"url": "https://github.com/NiklasGollenstede/epub-creator/blob/master/LICENSE"
}
}
],
"dependencies": {
"@mozilla/readability": "^0.4.2",
"jszip": "^3.10.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"rollup": "^3.9.1",
"web-ext": "^7.4.0"
}
}