-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·41 lines (41 loc) · 1.15 KB
/
package.json
File metadata and controls
executable file
·41 lines (41 loc) · 1.15 KB
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
{
"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 .",
"typecheck": "tsc --noEmit --skipLibCheck",
"locale-lint": "chromex-locale-lint --localesDir dist/_locales --strict"
},
"author": "okaryo",
"license": "MIT",
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^7.3.5",
"@mui/material": "^7.3.5",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"tldts": "^7.0.17"
},
"devDependencies": {
"@biomejs/biome": "^2.3.5",
"@types/chrome": "^0.1.29",
"@types/node": "^24.10.1",
"@types/react": "^19.2.5",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"chromex-locale-lint": "^0.1.0",
"typescript": "^5.9.3",
"vite": "^7.2.2",
"vitest": "^4.0.9"
}
}