-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.34 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.34 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
41
42
43
44
45
46
47
48
49
{
"name": "auto-tab-groups",
"version": "3.14.0",
"type": "module",
"description": "Cross-browser extension that automatically groups tabs by domain",
"author": "Nitzan Papini",
"private": true,
"scripts": {
"dev": "wxt",
"dev:chrome": "wxt -b chrome",
"dev:firefox": "wxt -b firefox --mv2",
"build": "wxt build",
"build:chrome": "wxt build -b chrome",
"build:firefox": "wxt build -b firefox",
"zip": "wxt zip",
"zip:chrome": "wxt zip -b chrome",
"zip:firefox": "wxt zip -b firefox",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:e2e": "bun run build:chrome && bunx playwright test",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"format": "biome format --write .",
"format:check": "biome format .",
"code:check": "biome check . && bun run typecheck",
"code:fix": "biome check --write .",
"postinstall": "wxt prepare"
},
"dependencies": {
"@mlc-ai/web-llm": "^0.2.80"
},
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@playwright/test": "^1.56.1",
"@types/chrome": "^0.0.287",
"@vitest/coverage-v8": "^3.2.4",
"typescript": "^5.9.3",
"vitest": "^3.0.0",
"wxt": "^0.20.6"
},
"keywords": [
"chrome-extension",
"firefox-addon",
"tab-management",
"productivity",
"wxt",
"typescript"
]
}