Files
router-template/package.json
2025-11-25 09:36:04 +08:00

49 lines
1.3 KiB
JSON

{
"name": "@kevisual/router-template-server",
"version": "0.0.1",
"description": "",
"main": "index.js",
"basename": "/root/router-template-server",
"app": {
"type": "system-app",
"key": "router-template-server",
"entry": "app.js",
"runtime": [
"server"
]
},
"scripts": {
"dev": "bun --watch src/main.ts ",
"build": "pnpm run clean && bun run bun.config.mjs",
"postbuild": "ev pack",
"compile": "bun build --compile ./src/main.ts --outfile router-template",
"compile:win": "bun build --compile ./src/main.ts --target=bun-windows-x64 --outfile router-template.exe",
"clean": "rm -rf dist && rimraf pack-dist",
"pub": "envision pack -p -u"
},
"files": [
"dist"
],
"keywords": [],
"author": "abearxiong <xiongxiao@xiongxiao.me> (https://www.xiongxiao.me)",
"license": "MIT",
"packageManager": "pnpm@10.22.0",
"type": "module",
"dependencies": {
"@kevisual/ai": "^0.0.11",
"@kevisual/local-proxy": "^0.0.8",
"@kevisual/query": "^0.0.29",
"@kevisual/router": "0.0.33",
"@kevisual/use-config": "^1.0.19",
"archiver": "^7.0.1",
"dayjs": "^1.11.19",
"es-toolkit": "^1.42.0",
"nanoid": "^5.1.6"
},
"devDependencies": {
"@kevisual/types": "^0.0.10",
"@types/archiver": "^7.0.0",
"@types/bun": "^1.3.3",
"@types/node": "^24.10.1"
}
}