-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.67 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.67 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
{
"name": "pullscope",
"description": "Automatically apply custom filters to GitHub Pull Request pages with real-time sync",
"private": true,
"version": "0.1.0",
"type": "module",
"keywords": [
"github",
"pull-request",
"filters",
"browser-extension",
"chrome-extension",
"firefox-extension",
"wxt",
"svelte",
"svelte-5",
"tailwind",
"tailwind-4"
],
"scripts": {
"dev": "wxt",
"dev:firefox": "wxt -b firefox",
"dev:chrome-flatpak": "CHROME_PATH=./scripts/chrome-flatpak.sh wxt",
"build": "wxt build",
"build:firefox": "wxt build -b firefox",
"zip": "wxt zip",
"zip:firefox": "wxt zip -b firefox",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"check": "svelte-check --tsconfig ./tsconfig.json",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint-staged": "lint-staged",
"fix": "pnpm run lint:fix && pnpm run format && pnpm run check",
"generate-icons": "node scripts/generate-icons.mjs",
"postinstall": "wxt prepare",
"clean": "git clean -fXd",
"prepare": "husky"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@resvg/resvg-js": "^2.6.2",
"@sveltejs/vite-plugin-svelte": "4.0.0-next.7",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.15",
"@tailwindcss/vite": "4.0.0-alpha.24",
"@tsconfig/svelte": "^5.0.4",
"@types/chrome": "^0.0.269",
"@typescript-eslint/eslint-plugin": "^8.46.4",
"@typescript-eslint/parser": "^8.46.4",
"@vitest/ui": "^4.0.16",
"@wxt-dev/module-svelte": "^1.0.1",
"eslint": "^9.39.1",
"eslint-plugin-svelte": "^3.13.0",
"happy-dom": "^20.0.11",
"husky": "^9.1.7",
"lint-staged": "^16.2.6",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.2.6",
"prettier-plugin-tailwindcss": "^0.5.14",
"svelte": "5.0.0-next.245",
"svelte-check": "^3.8.6",
"svelte-eslint-parser": "^1.4.0",
"tailwindcss": "4.0.0-alpha.24",
"tslib": "^2.7.0",
"typescript": "^5.6.2",
"vite": "^5.4.5",
"vite-plugin-top-level-await": "^1.4.4",
"vite-plugin-wasm": "^3.3.0",
"vitest": "^4.0.16",
"wxt": "^0.19.9"
},
"overrides": {
"@sveltejs/vite-plugin-svelte": "^4.0.0-next"
},
"resolutions": {
"@sveltejs/vite-plugin-svelte": "^4.0.0-next"
}
}