feat: 添加web项目基础配置和依赖

添加web项目基础结构,包括vite配置、ts配置、package.json和示例代码
添加pnpm工作区配置
更新.gitignore包含pnpm-store
This commit is contained in:
xiongxiao
2025-12-31 20:05:01 +08:00
parent 6867ec041c
commit f8b80b2587
13 changed files with 770 additions and 1 deletions

18
web/package.json Normal file
View File

@@ -0,0 +1,18 @@
{
"name": "@kevisual/simple-html",
"version": "1.0.0",
"description": "",
"basename": "/root/simple-html",
"scripts": {
"dev": "vite",
"build": "vite build"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.27.0",
"devDependencies": {
"@kevisual/types": "^0.0.10",
"vite": "^7.3.0"
}
}