Files
Batrachophreno 0d92359da7 Bun, Inferno->React migration (#22529)
Re-creation of https://github.com/Aurorastation/Aurora.3/pull/21046 to
skip merge conflict hell. Brings us modern TGUI.

**ALTERNATE TITLE: TGUI HELLSCAPE PR
ABANDON ALL HOPE YE WHO ENTER HERE**

- [x] Migrate build tools (javascript -> typescript, bun for package
management).
- [x] Upgrade all TGUI dependencies and associated root files to
TG-congruent versions (axios, babel, dompurify, eslint, highlight,
marked, prettier, sass, source-map, stacktrace-parser, typescript).
- [x] InfernoJS -> React migrations
- [x] React cleanup and polish (migrate all remaining .js files to
appropriate .ts or .tsx filetype, all remaining hooks, linting, error
corrections, etc.)
- [ ] Test all remaining TGUI interfaces
2026-06-05 15:55:22 +02:00

32 lines
784 B
JSON

{
"name": "tgui-workspace",
"version": "6.0.0",
"devDependencies": {
"@happy-dom/global-registrator": "^20.0.11",
"@rspack/cli": "^1.6.8",
"@rspack/core": "^1.6.8",
"@testing-library/react": "^16.3.2",
"@types/bun": "^1.3.5",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/webpack-env": "^1.18.8",
"@types/wicg-file-system-access": "^2023.10.6",
"css-loader": "^7.1.2",
"sass-embedded": "^1.97.1",
"sass-loader": "^16.0.6",
"typescript": "^5.8.3"
},
"packageManager": "bun@1.2.16",
"private": true,
"scripts": {
"tgui:analyze": "rspack --analyze",
"tgui:build": "rspack build",
"tgui:dev": "bun --smol packages/tgui-dev-server/index.ts",
"tgui:test": "bun test",
"tgui:tsc": "tsc"
},
"workspaces": [
"packages/*"
]
}