Initial commit

This commit is contained in:
2026-03-19 22:38:54 +08:00
commit e64d63e8b9
15 changed files with 3810 additions and 0 deletions

37
package.json Normal file
View File

@@ -0,0 +1,37 @@
{
"name": "@xcopencodweb/terminal",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "concurrently \"node server/index.js\" \"vite\"",
"dev:server": "node server/index.js",
"build": "tsc && vite build",
"preview": "vite preview"
},
"dependencies": {
"@fontsource/ibm-plex-mono": "^5.2.7",
"clsx": "^2.1.1",
"express": "^5.1.0",
"ghostty-web": "^0.4.0",
"node-pty": "^1.1.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"ws": "^8.18.3",
"zustand": "^5.0.8"
},
"devDependencies": {
"@types/express": "^5.0.1",
"@types/node": "^24.3.1",
"concurrently": "^9.2.1",
"@types/react": "^19.1.10",
"@types/react-dom": "^19.1.7",
"@types/ws": "^8.18.0",
"@vitejs/plugin-react": "^5.0.0",
"autoprefixer": "^10.4.21",
"tailwindcss": "^4.0.0",
"@tailwindcss/postcss": "^4.0.0",
"typescript": "~5.8.3",
"vite": "^7.1.2"
}
}