-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.63 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.63 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
{
"name": "endfield-calcs",
"private": true,
"version": "0.8.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"build:beta": "tsc -b && vite build --base /endfield-calc/beta/ --outDir dist/beta --emptyOutDir",
"lint": "eslint .",
"preview": "vite preview",
"knip": "knip",
"test": "vitest",
"extract:ids": "bun run scripts/extract-ids.ts",
"extract:facilities": "bun run scripts/extract-facilities.ts",
"extract:recipes": "bun run scripts/extract-recipes.ts",
"extract:items": "bun run scripts/extract-items.ts",
"extract:metastorage": "bun run scripts/extract-metastorage.ts",
"extract:structures": "bun run scripts/extract-structures.ts",
"extract:aic": "bun run scripts/extract-aic.ts",
"extract:all": "bun run scripts/extract-all.ts",
"extract:item-colors": "bun run scripts/extract-item-colors.ts"
},
"dependencies": {
"@bubblyworld/highs-ts": "^1.2.0",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-toggle": "^1.1.10",
"@radix-ui/react-toggle-group": "^1.1.11",
"@radix-ui/react-tooltip": "^1.2.8",
"@tailwindcss/vite": "^4.1.16",
"@xyflow/react": "^12.9.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"elkjs": "^0.11.0",
"html-to-image": "^1.11.13",
"i18next": "^26.3.0",
"i18next-browser-languagedetector": "^8.2.1",
"i18next-http-backend": "^4.0.0",
"lucide-react": "^0.552.0",
"radix-ui": "^1.4.3",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-i18next": "^17.0.8",
"react-icons": "^5.5.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^4.1.16"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^24.6.0",
"@types/pngjs": "^6.0.5",
"@types/react": "^19.1.16",
"@types/react-dom": "^19.1.9",
"@vitejs/plugin-react": "^6.0.1",
"eslint": "^10.4.1",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.4.22",
"globals": "^17.6.0",
"i18next-cli": "^1.58.1",
"knip": "^6.15.0",
"pngjs": "^7.0.0",
"tw-animate-css": "^1.4.0",
"typescript": "~5.9.3",
"typescript-eslint": "^8.60.0",
"vite": "^8.0.14",
"vitest": "^4.1.7"
},
"pnpm": {
"onlyBuiltDependencies": [
"@swc/core"
]
}
}