-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.63 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.63 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
{
"name": "move-tab-to-next-window",
"version": "1.0.0",
"description": "Move tab to next window browser context menu extension",
"homepage": "https://github.com/rshev/MoveTabToNextWindow",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm -rf dist/ && mkdir dist || true",
"build-assets-ff": "cp src-assets-ff/* dist/",
"build-assets-chrome": "cp src-assets-chrome/* dist/",
"_dev-watch": "microbundle watch -f cjs --no-compress",
"dev-ff": "npm run clean && npm run build-assets-ff && npm run _dev-watch -- src/firefox.ts",
"dev-chrome": "npm run clean && npm run build-assets-chrome && npm run _dev-watch -- src/chrome.ts",
"_build": "microbundle build -f cjs --no-sourcemap",
"build-ff": "npm run clean && npm run build-assets-ff && npm run _build -- src/firefox.ts",
"build-chrome": "npm run clean && npm run build-assets-chrome && npm run _build chrome -- src/chrome.ts",
"zip-ff": "npm run build-ff && cd dist && bestzip dist-ff.zip * && cd .. && bestzip dist/src-ff.zip src src-assets-ff *.json *.md LICENSE",
"zip-chrome": "npm run build-chrome && cd dist && bestzip dist-chrome.zip *"
},
"keywords": [],
"author": "Roman Shevtsov",
"license": "MIT",
"main": "dist/index.js",
"types": ".cache/null",
"devDependencies": {
"@types/chrome": "^0.0.293",
"@types/firefox-webext-browser": "^82.0.0",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"bestzip": "^2.2.0",
"eslint": "^9.18.0",
"microbundle": "^0.13.3",
"typescript": "^4.3.4",
"webextension-polyfill-ts": "^0.25.0"
}
}