-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.01 KB
/
Copy pathpackage.json
File metadata and controls
105 lines (105 loc) · 3.01 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "github-refresh",
"version": "0.1.1",
"private": false,
"type": "module",
"description": "Chrome extension that auto-refreshes idle GitHub tabs and reminds you to refresh active ones — never miss new commits, PR comments, or CI status again.",
"keywords": [
"chrome-extension",
"browser-extension",
"github",
"auto-refresh",
"tab-refresh",
"productivity",
"developer-tools",
"manifest-v3",
"react",
"typescript",
"tailwindcss",
"shadcn-ui",
"vite",
"crxjs",
"pull-requests",
"code-review",
"ci-cd",
"github-actions",
"primer-design"
],
"homepage": "https://github.com/ivanmaierg/github-refresh#readme",
"repository": {
"type": "git",
"url": "https://github.com/ivanmaierg/github-refresh.git"
},
"bugs": {
"url": "https://github.com/ivanmaierg/github-refresh/issues"
},
"author": "ivanmaierg",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"typecheck": "tsc -b --noEmit",
"lint": "eslint .",
"format": "prettier --write .",
"icons": "node scripts/generate-icons.mjs",
"zip": "node scripts/zip-dist.mjs",
"screenshots": "node scripts/format-screenshots.mjs",
"test": "pnpm test:unit && pnpm test:e2e",
"test:unit": "vitest run",
"test:unit:watch": "vitest",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "E2E_HEADED=1 playwright test --headed",
"pretest:e2e": "pnpm build",
"release:patch": "pnpm version patch -m \"chore: release v%s\"",
"release:minor": "pnpm version minor -m \"chore: release v%s\"",
"release:major": "pnpm version major -m \"chore: release v%s\""
},
"dependencies": {
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"lucide-react": "^0.456.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwind-merge": "^2.5.4"
},
"devDependencies": {
"@crxjs/vite-plugin": "^2.0.0-beta.28",
"@eslint/js": "^9.14.0",
"@playwright/test": "^1.59.1",
"@types/chrome": "^0.0.283",
"@types/node": "^22.9.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.3",
"@vitest/ui": "^2.1.9",
"autoprefixer": "^10.4.20",
"eslint": "^9.14.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"globals": "^15.12.0",
"jsdom": "^25.0.1",
"postcss": "^8.4.49",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"sharp": "^0.33.5",
"sinon-chrome": "^3.0.1",
"tailwindcss": "^3.4.14",
"typescript": "^5.6.3",
"typescript-eslint": "^8.13.0",
"vite": "^5.4.10",
"vitest": "^2.1.9"
},
"packageManager": "pnpm@10.33.0",
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"sharp"
]
}
}