This commit is contained in:
2025-12-02 09:00:25 +08:00
commit 081add5316
43 changed files with 8641 additions and 0 deletions

22
package.json Normal file
View File

@@ -0,0 +1,22 @@
{
"name": "@kevisual/apps-template",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"build": "pnpm build:web && pnpm build:backend",
"build:backend": "cd backend && bun run src/main.ts",
"build:web": "cd frontend && pnpm build",
"serve": "cd backend && bun run src/main.ts",
"init": "git submodule update --init --recursive",
"clean:module": "rm .gitmodules -rf && sh demodules.sh"
},
"keywords": [],
"author": "abearxiong <xiongxiao@xiongxiao.me> (https://www.xiongxiao.me)",
"license": "MIT",
"packageManager": "pnpm@10.19.0",
"type": "module",
"dependencies": {
"@kevisual/router": "^0.0.33"
}
}