-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.58 KB
/
package.json
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
{
"name": "svelte-5-extension",
"description": "A starter template for building browser extensions with Svelte 5, Tailwind 4, and WXT",
"private": true,
"version": "0.0.1",
"keywords": [
"wxt",
"svelte",
"svelte-5",
"tailwind",
"tailwind-4",
"browser-extension",
"chrome-extension",
"firefox-extension",
"extension"
],
"scripts": {
"dev": "wxt",
"dev:firefox": "wxt -b firefox",
"build": "wxt build",
"build:firefox": "wxt build -b firefox",
"zip": "wxt zip",
"zip:firefox": "wxt zip -b firefox",
"check": "svelte-check --tsconfig ./tsconfig.json",
"postinstall": "wxt prepare",
"clean": "git clean -fXd"
},
"dependencies": {
"mode-watcher": "^0.3.1",
"runed": "^0.15.2"
},
"devDependencies": {
"@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",
"@wxt-dev/module-svelte": "^1.0.1",
"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",
"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",
"wxt": "^0.19.9"
},
"overrides": {
"@sveltejs/vite-plugin-svelte": "^4.0.0-next"
},
"resolutions": {
"@sveltejs/vite-plugin-svelte": "^4.0.0-next"
}
}