-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
45 lines (45 loc) · 1.97 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
{
"name": "himawari",
"version": "0.22.0",
"description": "Experience the latest image from the Himawari 8 satellite every time you open a new tab in Chrome or Firefox.",
"main": "bundle.js",
"dependencies": {
"d3-time-format": "^4.1.0",
"webextension-polyfill": "^0.12.0"
},
"devDependencies": {
"@types/d3-time-format": "^4.0.3",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.57.1",
"@rollup/plugin-node-resolve": "^16.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.36.0",
"rollup": "^2.79.2",
"typescript": "^5.7.2",
"web-ext-types": "^3.2.1"
},
"scripts": {
"postinstall": "cp node_modules/webextension-polyfill/dist/browser-polyfill.* lib",
"build": "rollup -c",
"watch": "rollup -w -c",
"start": "python3 -m http.server",
"prebundle": "npm run build",
"bundle": "npm run bundle:firefox && npm run bundle:chrome && npm run bundle:src",
"bundle:chrome": "cp manifest.chrome.json manifest.json && zip himawari_chrome.zip lib/* icons/*.png index.html style.css bundle.js bundle.js.map options.js options.html Roboto_Slab/*.ttf manifest.json",
"bundle:firefox": "cp manifest.firefox.json manifest.json && zip himawari_firefox.zip lib/* icons/*.png index.html style.css bundle.js options.js bundle.js.map options.html Roboto_Slab/*.ttf manifest.json",
"bundle:src": "zip -r source.zip src package.json lib index.html manifest*.json options.* rollup.config.js style.css tsconfig.json yarn.lock README.md",
"lint": "eslint src/index.ts options.js",
"format": "eslint --fix src/index.ts options.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/domoritz/himawari-8-chrome.git"
},
"author": "Dominik Moritz",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/domoritz/himawari-8-chrome/issues"
},
"homepage": "https://github.com/domoritz/himawari-8-chrome#readme"
}