-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.25 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
{
"name": "tabs_tray",
"devDependencies": {
"@chakra-ui/cli": "^3.4.0",
"@types/bun": "latest",
"@types/firefox-webext-browser": "^120.0.4",
"@types/fs-extra": "^11.0.4",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@types/sortablejs": "^1.15.8",
"@types/yargs": "^17.0.33",
"license-report": "^6.7.1",
"web-ext": "^8.3.0",
"yargs": "^17.7.2"
},
"peerDependencies": {
"typescript": "^5.6.3"
},
"dependencies": {
"@chakra-ui/react": "^3.4.0",
"@emotion/react": "^11.14.0",
"fs-extra": "^11.3.0",
"next-themes": "^0.4.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.4.0",
"react-shadow": "^20.6.0",
"react-sortablejs": "^6.1.4",
"sortablejs": "^1.15.6",
"webext-options-sync": "^4.3.0",
"zod": "^3.24.1"
},
"scripts": {
"dev": "bun run tool/build.tsx --dev",
"dev firefox": "bun run tool/build.tsx --dev --browser firefox",
"dev chrome": "bun run tool/build.tsx --dev --browser chrome",
"build": "bun run tool/build.tsx",
"lint": "bun run web-ext lint --config=web-ext-config.mjs",
"pack": "bun run web-ext build --config=web-ext-config.mjs",
"publish": "bun run web-ext sign --config=web-ext-config.mjs"
}
}