-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.21 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.21 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
{
"name": "aging-tabs",
"version": "1.1.1",
"private": true,
"description": "Auto-close inactive tabs with visual aging feedback",
"scripts": {
"build": "node build.mjs",
"build:chrome": "node build.mjs --browser=chrome",
"build:firefox": "node build.mjs --browser=firefox",
"build:safari": "node build.mjs --browser=safari",
"watch": "node build.mjs --watch",
"clean": "rm -rf dist",
"package:chrome": "node scripts/pack.mjs chrome",
"package:firefox": "node scripts/pack.mjs firefox",
"package:safari": "node scripts/pack.mjs safari",
"package:source": "node scripts/pack.mjs source",
"package": "node scripts/pack.mjs",
"sync:safari": "node scripts/sync-safari-version.mjs",
"test": "vitest run --exclude 'scenarios/**'",
"test:watch": "vitest"
},
"devDependencies": {
"@stryker-mutator/core": "^9.6.0",
"@stryker-mutator/vitest-runner": "^9.6.0",
"@types/webextension-polyfill": "^0.12.5",
"@vitest/coverage-v8": "^4.1.0",
"adm-zip": "^0.5.17",
"esbuild": "^0.27.4",
"fast-check": "^4.6.0",
"playwright": "^1.58.2",
"typescript": "^5.7.0",
"vitest": "^4.1.0"
},
"dependencies": {
"webextension-polyfill": "^0.12.0"
}
}