first: add docs and create vite project

This commit is contained in:
2026-03-23 09:17:27 +01:00
commit 8c1fd9e88d
6 changed files with 332 additions and 0 deletions

15
package.json Normal file
View File

@@ -0,0 +1,15 @@
{
"name": "webshell",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"devDependencies": {
"typescript": "~5.9.3",
"vite": "^8.0.1"
}
}