-
Notifications
You must be signed in to change notification settings - Fork 74
/
package.json
54 lines (54 loc) · 1.53 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
{
"name": "Eye Dropper",
"description": "Pick colors from any website.",
"private": true,
"version": "3.3.1.8",
"type": "module",
"scripts": {
"build": "wxt build",
"build:firefox": "wxt build -b firefox",
"check": "svelte-check --tsconfig ./tsconfig.json",
"deploy:prod": "./deploy prod ${npm_package_version}",
"deploy:beta": "./deploy beta ${npm_package_version}",
"dev": "wxt",
"dev:firefox": "wxt -b firefox",
"postinstall": "wxt prepare",
"test": "vitest",
"zip": "wxt zip",
"zip:firefox": "wxt zip -b firefox"
},
"devDependencies": {
"@sonderbase/svelte-sortablejs": "^2.0.2",
"@steeze-ui/lucide-icons": "^1.2.1",
"@steeze-ui/svelte-icon": "^1.5.0",
"@tailwindcss/typography": "^0.5.15",
"@tsconfig/svelte": "^5.0.4",
"@types/webextension-polyfill": "^0.12.1",
"@wxt-dev/module-svelte": "^1.0.1",
"autoprefixer": "^10.4.20",
"daisyui": "^4.12.14",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.2.7",
"prettier-plugin-tailwindcss": "^0.6.8",
"svelte": "^5.1.13",
"svelte-check": "^4.0.6",
"tailwindcss": "^3.4.14",
"tslib": "^2.8.1",
"typescript": "^5.6.2",
"vitest": "^2.1.4",
"webextension-polyfill": "^0.12.0",
"wxt": "^0.19.13"
},
"dependencies": {
"@ctrl/tinycolor": "^4.1.0",
"@webext-core/messaging": "^2.0.2",
"@webext-core/storage": "^1.2.0",
"ts-pattern": "^5.5.0"
},
"pnpm": {
"overrides": {
"@sveltejs/vite-plugin-svelte": "^4.0.0"
}
}
}