-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 2 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
{
"name": "tabby",
"description": "Tabby — a cat lives in your browser. She reacts to your tabs and grows with you. She stays off some websites to avoid distraction.",
"version": "2.4.11",
"private": true,
"type": "module",
"scripts": {
"predev": "pnpm assets",
"prebuild": "pnpm assets",
"prezip": "pnpm assets",
"dev": "wxt",
"build": "wxt build && node scripts/verify-build-output.mjs",
"build:dev": "wxt build --mode development && node scripts/verify-build-output.mjs",
"zip": "pnpm locales && wxt zip && node scripts/verify-build-output.mjs",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "node scripts/patch-wxt-tsconfig.mjs && tsc --noEmit -p .wxt/tsconfig.json",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"check": "pnpm typecheck && pnpm lint && pnpm lint:extension-i18n && pnpm real-cats:check && pnpm test",
"pretest:e2e": "node scripts/pretest-e2e.mjs",
"test:e2e": "playwright test",
"locales": "node scripts/generate-locales.mjs",
"lint:extension-i18n": "node scripts/lint-extension-i18n.mjs",
"real-cats:optimize": "node scripts/optimize-real-cats.mjs",
"real-cats:check": "node scripts/optimize-real-cats.mjs --check",
"icons": "python3 scripts/generate-icons.py",
"animations": "node scripts/generate-scaffold-animations.mjs",
"gif:convert": "node scripts/convert-lottie-to-gif.mjs",
"animations:ship": "pnpm animations && pnpm gif:convert",
"assets": "pnpm locales && pnpm animations",
"postinstall": "wxt prepare && node scripts/patch-wxt-tsconfig.mjs && node scripts/generate-locales.mjs"
},
"packageManager": "pnpm@10.33.4",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "1.62.1-beta-1785253292000",
"@types/chrome": "^0.2.9",
"eslint": "^10.10.0",
"fake-indexeddb": "^6.2.5",
"globals": "^17.12.0",
"sharp": "^0.35.4",
"typescript": "^6.0.3",
"typescript-eslint": "^8.70.0",
"vitest": "^4.1.11",
"wxt": "^0.21.4"
}
}