-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) 路 1.89 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) 路 1.89 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
{
"name": "satellite-new-tab",
"version": "0.24.0",
"description": "Experience the latest image of Earth from a 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": "^8.63.0",
"@typescript-eslint/parser": "^8.63.0",
"eslint": "^8.57.1",
"terser": "^5.49.0",
"typescript": "^6.0.2",
"vite": "^6.4.3",
"web-ext-types": "^3.2.1"
},
"scripts": {
"postinstall": "cp node_modules/webextension-polyfill/dist/browser-polyfill.* lib",
"build": "vite build",
"watch": "vite build --watch",
"dev": "vite",
"start": "vite preview",
"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 satellite_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 satellite_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.* vite.config.ts style.css tsconfig.json package-lock.json 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/satellite-new-tab.git"
},
"author": "Dominik Moritz",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/domoritz/satellite-new-tab/issues"
},
"homepage": "https://github.com/domoritz/satellite-new-tab#readme"
}