-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 770 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 770 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"private": true,
"name": "url-switcher",
"description": "An extension that allows user to quickly switch between Google accounts for Gmail, Drive, Calendar etc. with a single click.",
"version": "1.0.2",
"author": {
"name": "arvindpunk",
"email": "arvindpunk@gmail.com",
"url": "https://arvindpunk.dev"
},
"license": "MIT",
"devDependencies": {
"@types/webextension-polyfill": "^0.12.1",
"extension": "latest",
"typescript": "5.3.3",
"webextension-polyfill": "^0.12.0"
},
"scripts": {
"dev": "extension dev -b firefox",
"start": "extension start",
"build": "extension build --polyfill true --browser firefox,chrome",
"publish": "extension build --zip true --polyfill true --browser firefox,chrome"
}
}