-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.5 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.5 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "segment-editor-react",
"private": true,
"type": "module",
"scripts": {
"dev": "vite --port 3000",
"build": "vite build && tsc",
"build:plugin": "vite build --config vite.config.plugin.ts && tsc",
"preview": "vite preview",
"test": "vitest run",
"lint": "oxlint",
"format": "prettier",
"check": "prettier --write . && oxlint --fix"
},
"vitest": {
"setup": [
"./src/vitest.setup.ts"
]
},
"dependencies": {
"@base-ui/react": "^1.4.1",
"@fontsource-variable/dm-sans": "^5.2.8",
"@jellyfin/sdk": "^0.13.0",
"@tanstack/react-form": "^1.29.1",
"@tanstack/react-hotkeys": "^0.9.1",
"@tanstack/react-query": "^5.99.2",
"@tanstack/react-router": "^1.168.23",
"axios": "^1.15.2",
"blurhash": "^2.0.5",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"culori": "^4.0.2",
"hls.js": "^1.6.16",
"i18next": "^26.0.6",
"jassub": "2.4.2",
"lucide-react": "^1.8.0",
"motion": "^12.38.0",
"next-themes": "^0.4.6",
"node-vibrant": "^4.0.4",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-i18next": "^17.0.4",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"zod": "^4.3.6",
"zustand": "^5.0.12"
},
"devDependencies": {
"@rolldown/plugin-babel": "^0.2.3",
"@tailwindcss/vite": "^4.2.4",
"@tanstack/devtools-vite": "^0.6.0",
"@tanstack/react-devtools": "^0.10.2",
"@tanstack/react-query-devtools": "^5.99.2",
"@tanstack/react-router-devtools": "^1.166.13",
"@tanstack/router-plugin": "^1.167.22",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@types/culori": "^4.0.1",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"babel-plugin-react-compiler": "^1.0.0",
"eslint-plugin-react-you-might-not-need-an-effect": "^0.9.3",
"fast-check": "^4.7.0",
"jsdom": "^29.0.2",
"oxlint": "^1.61.0",
"oxlint-tsgolint": "^0.20.0",
"prettier": "^3.8.3",
"shadcn": "^4.4.0",
"tailwindcss": "^4.2.4",
"tw-animate-css": "^1.4.0",
"typescript": "^6.0.3",
"vite": "^8.0.9",
"vite-plugin-pwa": "^1.2.0",
"vitest": "^4.1.5",
"workbox-window": "^7.4.0"
},
"pnpm": {
"overrides": {
"serialize-javascript": "^7.0.5"
},
"peerDependencyRules": {
"allowedVersions": {
"typescript": "^6.0.0",
"vite": "^8.0.0"
}
}
},
"packageManager": "pnpm@10.33.0"
}