Add initial webui

This commit is contained in:
2025-11-01 17:18:32 -07:00
committed by Mark
parent 19f523d0ed
commit 07aeda5e07
28 changed files with 2994 additions and 0 deletions

31
webui/package.json Normal file
View File

@@ -0,0 +1,31 @@
{
"name": "rhai-playground-next",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@xterm/xterm": "^5.5.0",
"clsx": "^2.0.0",
"codemirror": "^5.65.1",
"lucide-react": "^0.548.0",
"next": "14.0.0",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@types/codemirror": "0.0.96",
"@types/node": "^20.8.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"eslint": "^8.51.0",
"eslint-config-next": "14.0.0",
"typescript": "^5.2.0"
},
"packageManager": "bun@1.0.0"
}