Files
reader-star/package.json
rjl e8cd6732d7 feat: 添加排行榜分数编辑和题目详情展示功能
- 在排行榜详情页中,添加队伍题目分数编辑功能,支持批量保存
- 新增打字机组件用于题目答案的动态展示
- 优化游戏页面的答题数量统计逻辑,使用 UserAnswerFont 解析
- 更新题目导入工具,支持更多 JSON 格式
- 调整游戏倒计时逻辑,优先使用题目详情中的时间
- 移除排行榜中的部分冗余列,优化界面显示
2026-03-05 18:08:17 +08:00

35 lines
1.0 KiB
JSON

{
"name": "reader-star",
"type": "module",
"scripts": {
"build:admin": "pnpm --filter @reader-star/admin build",
"build:user": "pnpm --filter @reader-star/user build",
"cleanup": "pnpm -r exec rm -rf node_modules",
"dev:admin": "pnpm --filter @reader-star/admin dev",
"dev:user": "pnpm --filter @reader-star/user dev",
"dev:importer": "pnpm --filter @reader-star/question-importer start",
"dev:api": "pnpm --filter @reader-star/question-importer run-import",
"build": "pnpm -r build",
"lint": "eslint . --fix",
"prepare": "simple-git-hooks",
"typecheck": "pnpm -r typecheck"
},
"dependencies": {
"pinia-plugin-persistedstate": "^4.7.1"
},
"devDependencies": {
"@read-star/eslint-config": "workspace:*",
"eslint": "^9.39.2",
"eslint-plugin-format": "^1.3.1",
"lint-staged": "latest",
"simple-git-hooks": "latest",
"typescript": "latest"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged --no-stash"
},
"lint-staged": {
"*": "eslint --fix"
}
}