-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.05 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
{
"name": "sharetube-extension",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"format": "biome check --write .",
"lint": "biome check .",
"build": "tsc && vite build",
"build:chrome": "tsc && BROWSER=chrome vite build",
"build:firefox": "tsc && BROWSER=firefox vite build"
},
"dependencies": {
"lodash.debounce": "^4.0.8",
"react": "^18.3.1",
"react-beautiful-dnd": "^13.1.1",
"react-dom": "^18.3.1",
"webextension-polyfill": "^0.12.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/lodash.debounce": "^4.0.9",
"@types/node": "^22.12.0",
"@types/react": "^19.0.8",
"@types/react-beautiful-dnd": "^13.1.8",
"@types/react-dom": "^19.0.3",
"@types/webextension-polyfill": "^0.12.1",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"postcss": "^8.5.1",
"postcss-prefix-selector": "^2.1.0",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.3",
"vite": "^6.0.11",
"vite-plugin-html": "^3.2.2",
"vite-plugin-web-extension": "^4.4.3",
"vite-tsconfig-paths": "^5.1.4"
}
}