-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.03 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.03 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
{
"name": "securetab",
"version": "1.0.0",
"description": "A Chrome/Edge browser extension that blocks websites with password protection",
"main": "background.js",
"scripts": {
"generate-icons": "node generate-icons.js",
"build": "node build.js",
"build:prod": "npm run generate-icons && node build.js",
"test": "echo 'No tests specified'",
"validate": "node -e \"require('./build.js').validateManifest() && require('./build.js').validateRequiredFiles()\""
},
"keywords": [
"browser-extension",
"chrome-extension",
"edge-extension",
"website-blocker",
"password-protection",
"productivity",
"security"
],
"author": "SecureTab Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yourusername/securetab.git"
},
"bugs": {
"url": "https://github.com/yourusername/securetab/issues"
},
"homepage": "https://github.com/yourusername/securetab#readme",
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"sharp": "^0.34.3"
}
}