-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
executable file
·39 lines (39 loc) · 1.08 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": "TabTabTab",
"description": "All In One Chrome Tab Manager",
"private": true,
"type": "module",
"scripts": {
"dev": "NODE_ENV=development vite build --watch --mode development",
"build": "vite build",
"test": "vitest run",
"check": "biome check .",
"check:fix": "biome check --write --unsafe .",
"check:ci": "biome ci .",
"locale-lint": "chromex-locale-lint --localesDir dist/_locales --strict"
},
"author": "okaryo",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/chrome": "^0.0.299",
"@types/react": "^19.0.7",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^4.3.4",
"chromex-locale-lint": "^0.1.0",
"typescript": "^5.7.3",
"vite": "^6.0.11",
"vitest": "^2.1.8"
},
"dependencies": {
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/sortable": "^8.0.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mui/icons-material": "^6.4.1",
"@mui/material": "^6.4.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tldts": "^6.1.73"
}
}