-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.22 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.22 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
50
{
"name": "QuickTab",
"version": "1.0.1",
"description": "Well behaved ticket tabs for Zendesk agents",
"type": "module",
"scripts": {
"dev": "wxt",
"build": "wxt build",
"zip": "wxt zip",
"analyze": "ANALYZE=true wxt build && echo 'Bundle stats: .output/stats.html'",
"postinstall": "wxt prepare",
"prepare": "husky",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"biome check --write"
],
"*.{json,css}": [
"biome format --write"
]
},
"repository": {
"type": "git",
"url": "git://github.com/justcarlson/QuickTab.git"
},
"author": "Justin Carlson",
"license": "ISC",
"bugs": {
"url": "https://github.com/justcarlson/QuickTab/issues"
},
"homepage": "https://github.com/justcarlson/QuickTab",
"devDependencies": {
"@biomejs/biome": "^2.3.12",
"@playwright/test": "^1.58.0",
"@types/chrome": "^0.0.287",
"@vitest/coverage-v8": "^4.0.18",
"husky": "^9.1.7",
"lint-staged": "^15.5.2",
"rollup-plugin-visualizer": "^6.0.5",
"typescript": "^5.9.3",
"vitest": "^4.0.18",
"wxt": "^0.20.13"
}
}