-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.07 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
{
"name": "tabby",
"version": "0.9.0",
"description": "Consolidate, dedupe, and sort your open tabs, then close them fast from a keyboard-driven review list.",
"type": "module",
"private": true,
"packageManager": "pnpm@11.21.0",
"scripts": {
"dev": "vite",
"build": "tsc --noEmit && vite build",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint .",
"format": "prettier --write .",
"pack:store": "TABBY_MEMEX= pnpm build && node scripts/pack-store.mjs"
},
"license": "MIT",
"devDependencies": {
"@crxjs/vite-plugin": "2.7.1",
"@eslint/js": "^10.0.1",
"@preact/preset-vite": "^2.10.6",
"@testing-library/preact": "^3.2.4",
"@types/chrome": "^0.2.6",
"@types/node": "^26.2.0",
"@vitest/coverage-v8": "^4.1.10",
"eslint": "^10.8.1",
"globals": "^17.11.0",
"jsdom": "^30.0.1",
"prettier": "^3.9.6",
"typescript": "~6.0.3",
"typescript-eslint": "^8.67.0",
"vite": "^8.2.1",
"vitest": "^4.1.10"
},
"dependencies": {
"preact": "^10.29.8"
}
}