Files
openbridge-token-usage-viewer/package.json
imbytecat ccc05a8ee8 feat: 添加环境变量管理与通用工具支持
- 添加 @t3-oss/env-core 依赖并指定其版本及对 peerDependencies 和 optionalPeers 的要求
- 添加 OpenCode 配置文件,定义本地和远程 MCP 服务以支持 shadcn 和 tanstack 工具集成。
- 添加 @t3-oss/env-core 依赖以支持环境变量配置管理
- 使用 t3-oss/env-core 创建环境变量配置,支持服务器和客户端环境变量解析,并启用空字符串转为 undefined。
- 添加工具函数库以支持项目中的通用功能需求
2026-01-17 02:12:10 +08:00

44 lines
1.3 KiB
JSON

{
"name": "fullstack-starter",
"private": true,
"type": "module",
"scripts": {
"build": "vite build",
"compile": "rm -rf out && bun build --compile .output/server/index.mjs --outfile out/server",
"dev": "vite dev",
"fix": "biome check --write",
"serve": "vite preview",
"typecheck": "tsc -b"
},
"dependencies": {
"@t3-oss/env-core": "^0.13.10",
"@tanstack/react-query": "^5.90.18",
"@tanstack/react-query-devtools": "^5.91.2",
"@tanstack/react-router": "^1.150.0",
"@tanstack/react-router-devtools": "^1.150.0",
"@tanstack/react-router-ssr-query": "^1.150.0",
"@tanstack/react-start": "^1.150.0",
"drizzle-orm": "^1.0.0-beta.9-e89174b",
"drizzle-zod": "^1.0.0-beta.9-e89174b",
"postgres": "^3.4.8",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"tailwindcss": "^4.1.18",
"zod": "^4.3.5"
},
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@tailwindcss/vite": "^4.1.18",
"@tanstack/devtools-vite": "^0.4.1",
"@tanstack/react-devtools": "^0.9.2",
"@types/bun": "^1.3.6",
"@vitejs/plugin-react": "^5.1.2",
"babel-plugin-react-compiler": "^1.0.0",
"drizzle-kit": "^1.0.0-beta.9-e89174b",
"nitro": "npm:nitro-nightly@^3.0.1-20260115-135431-98fc91c5",
"typescript": "^5.9.3",
"vite": "^8.0.0-beta.8",
"vite-tsconfig-paths": "^6.0.4"
}
}