-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.64 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
{
"name": "donetab",
"version": "0.0.0",
"private": true,
"description": "a webextension for quickly saving and restoring browser windows",
"author": "citriqa",
"license": "MPL-2.0",
"type": "module",
"scripts": {
"dev": "wxt",
"build": "wxt build",
"build:firefox": "wxt build -b firefox --mv3",
"zip": "wxt zip",
"zip:firefox": "wxt zip -b firefox --mv3",
"compile": "tsc --noEmit",
"postinstall": "wxt prepare"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@iconify-json/mingcute": "^1.2.3",
"@svgr/core": "^8.1.0",
"@svgr/plugin-jsx": "^8.1.0",
"@tailwindcss/vite": "^4.0.2",
"@types/chrome": "^0.0.300",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@wxt-dev/auto-icons": "^1.0.2",
"@wxt-dev/module-react": "^1.1.3",
"daisyui": "5.0.0-beta.7",
"eslint": "^9.19.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-compiler": "19.0.0-beta-21e868a-20250216",
"eslint-plugin-react-hooks": "^5.1.0",
"jiti": "^2.4.2",
"tailwindcss": "*",
"typescript": "^5.7.3",
"typescript-eslint": "^8.22.0",
"unplugin-icons": "^22.0.0",
"vite-plugin-eslint2": "^5.0.3",
"wxt": "^0.19.26"
},
"dependencies": {
"jotai": "^2.12.1",
"jotai-effect": "^2.0.1",
"radix-ui": "^1.1.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-svg": "^16.3.0",
"remeda": "^2.20.0"
},
"dependencyComments": {
"image-resize-compress": "version 2 returns string | ArrayBuffer instead of just string from blobToURL",
"jiti": "required for eslint to handle a .ts config file",
"tailwindcss": "direct dependency required for vscode extension to recognize version and work without config file"
}
}