-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 1.09 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
{
"name": "alwaysright",
"version": "1.0.0",
"description": "New tabs should always open to the immediate right of the current tab. And now they will.",
"scripts": {
"chrome": "cp manifest-chrome.json manifest.json && open -a \"Google Chrome\" chrome://extensions/",
"canary": "cp manifest-chrome.json manifest.json && open -a \"Google Chrome Canary\" chrome://extensions/",
"firefox": "cp manifest-firefox.json manifest.json && web-ext run",
"build:chrome": "cp manifest-chrome.json manifest.json && zip -r alwaysright-chrome.zip manifest.json service_worker.js always-right-icon-*.png README.md",
"test": "npx playwright test",
"test:chrome": "node scripts/chrome-test.js"
},
"devDependencies": {
"@playwright/test": "^1.50.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/autonome/alwaysright.git"
},
"author": "Dietrich Ayala <autonome@gmail.com> (https://metafluff.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/autonome/alwaysright/issues"
},
"homepage": "https://github.com/autonome/alwaysright#readme"
}