-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
98 lines (98 loc) · 3.49 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
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
92
93
94
95
96
97
98
{
"name": "elden-ring-compass",
"private": true,
"version": "0.0.0",
"type": "module",
"packageManager": "bun@1.1.26",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build:wasm-parser": "cd packages/elden-ring-save-parser && wasm-pack build && cd ../..",
"lint:fix": "eslint . --ext ts,tsx --report-unused-disable-directives --cache --max-warnings 0 --fix",
"format": "SORT_IMPORTS=true prettier --write --cache .",
"typecheck": "tsc --noEmit",
"lint": "bun run format && bun run lint:fix && bun run typecheck",
"preview": "vite preview"
},
"dependencies": {
"@faker-js/faker": "^8.4.1",
"@radix-ui/react-accordion": "^1.2.0",
"@radix-ui/react-avatar": "^1.1.0",
"@radix-ui/react-checkbox": "^1.1.1",
"@radix-ui/react-collapsible": "^1.1.0",
"@radix-ui/react-context-menu": "^2.2.1",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-popover": "^1.1.1",
"@radix-ui/react-progress": "^1.1.0",
"@radix-ui/react-radio-group": "^1.2.0",
"@radix-ui/react-scroll-area": "^1.1.0",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.0",
"@radix-ui/react-toast": "^1.2.1",
"@radix-ui/react-toggle": "^1.1.0",
"@radix-ui/react-toggle-group": "^1.1.0",
"@radix-ui/react-tooltip": "^1.1.2",
"@tanstack/react-query": "^5.54.1",
"@tanstack/react-table": "^8.20.5",
"@vercel/analytics": "^1.3.1",
"@vercel/speed-insights": "^1.0.12",
"babel-plugin-react-compiler": "^0.0.0-experimental-938cd9a-20240601",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cmdk": "^1.0.0",
"comlink": "^4.4.1",
"date-fns": "^3.6.0",
"elden-ring-save-parser": "file:./packages/elden-ring-save-parser/pkg",
"lucide-react": "^0.438.0",
"react": "rc",
"react-dom": "rc",
"react-markdown": "^9.0.1",
"react-zoom-pan-pinch": "^3.6.1",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7",
"vite-plugin-comlink": "^5.0.1",
"vite-plugin-wasm": "^3.3.0",
"@types/react": "npm:types-react@rc",
"@types/react-dom": "npm:types-react-dom@rc",
"zustand": "^4.5.5"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@tailwindcss/typography": "^0.5.15",
"@tanstack/eslint-plugin-query": "^5.53.0",
"@types/bun": "^1.1.8",
"@types/eslint__js": "^8.42.3",
"@types/node": "^20.14.4",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-react-compiler": "^0.0.0-experimental-b8a7b48-20240830",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.11",
"eslint-plugin-tailwindcss": "^3.17.4",
"postcss": "^8.4.44",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^3.2.4",
"prettier-plugin-tailwindcss": "^0.6.6",
"sharp": "^0.33.5",
"svgo": "^3.3.2",
"tailwindcss": "^3.4.10",
"typescript": "^5.5.4",
"typescript-eslint": "^7.13.1",
"vite": "^5.4.3",
"vite-plugin-image-optimizer": "^1.1.8"
},
"overrides": {
"@types/react": "npm:types-react@rc",
"@types/react-dom": "npm:types-react-dom@rc"
}
}