-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.33 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
39
40
{
"name": "tab-manager",
"version": "1.0.0",
"description": "Advanced tab management with cloud sync and team collaboration",
"main": "app/background.js",
"scripts": {
"build:bg": "esbuild app/background.js --bundle --format=esm --platform=browser --outfile=dist/background.js",
"build:newtab": "esbuild app/newtab/index.js --bundle --format=esm --platform=browser --outfile=dist/newtab.js",
"build:popup": "esbuild app/utils/popup.js --bundle --format=esm --platform=browser --outfile=dist/popup.js",
"build": "npm run build:bg && npm run build:newtab && npm run build:popup",
"package": "bash ./scripts/package-extension.sh",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Simplemart17/tab-manager.git"
},
"keywords": [
"chrome-extension",
"tab-manager",
"productivity",
"tab-organizer",
"team-collaboration"
],
"author": "Your Name",
"license": "MIT",
"bugs": {
"url": "https://github.com/Simplemart17/tab-manager/issues"
},
"homepage": "https://github.com/Simplemart17/tab-manager#readme",
"devDependencies": {
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"prettier": "^2.8.8"
},
"dependencies": {
"@supabase/supabase-js": "^2.75.0",
"esbuild": "^0.25.10"
}
}