-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 725 Bytes
/
Copy pathpackage.json
File metadata and controls
24 lines (24 loc) · 725 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
{
"name": "chrome-mask",
"version": "10.1.0",
"description": "Makes Firefox wear a mask to look like Chrome.",
"author": "Sky Schubert <sky@overengineer.dev>",
"license": "MIT",
"private": true,
"type": "module",
"scripts": {
"build": "npx web-ext build -s src/ -a dist/",
"lint-check": "npx prettier --check .",
"lint": "npx prettier --write .",
"start": "npx web-ext run --devtools -s src/ -u https://duckduckgo.com/?q=user+agent",
"version-number-update": "node version_number_updater/main.js",
"webext-lint": "npx web-ext lint -s src/"
},
"devDependencies": {
"prettier": "3.9.5",
"web-ext": "10.5.0"
},
"dependencies": {
"@aws-sdk/client-s3": "3.1085.0"
}
}