## [4.68.0](https://github.com/antialias/soroban-abacus-flashcards/compare/v4.67.1...v4.68.0) (2025-10-23) ### Features * **arcade:** auto-create room when user has none ([ff88c3a](ff88c3a1b8)) * **create-room:** replace hardcoded game grid with dynamic Radix Select dropdown ([83d0ba2](83d0ba26f5)) * **room-share:** add QR code button for easy mobile joining ([349290a](349290ac6a)) ### Bug Fixes * **complement-race:** prevent delivery move thrashing in steam sprint mode ([e1258ee](e1258ee041)) * **qr-button:** improve layout and z-index ([646a422](646a4228d0)) * **qr-button:** increase mini QR code size to 80px ([61ac737](61ac7378bd)) * **qr-button:** increase mini QR code to 84px ([3fae5ea](3fae5ea6fa)) * **qr-button:** make button square and increase QR size ([dc2d466](dc2d46663b)) * **qr-button:** match height of stacked buttons ([81f202d](81f202d215)) * **room-info:** hide Leave Room button when user is alone ([5927f61](5927f61c3c)) ### Documentation * update workflow to require manual testing before commits ([0991796](0991796f1e))
56 lines
1.5 KiB
JSON
56 lines
1.5 KiB
JSON
{
|
|
"name": "soroban-monorepo",
|
|
"version": "4.68.0",
|
|
"private": true,
|
|
"description": "Beautiful Soroban Flashcard Generator - Monorepo",
|
|
"workspaces": [
|
|
"apps/*",
|
|
"packages/*"
|
|
],
|
|
"packageManager": "pnpm@9.15.4",
|
|
"engines": {
|
|
"node": ">=18",
|
|
"pnpm": ">=8"
|
|
},
|
|
"scripts": {
|
|
"setup": "./setup-dev.sh",
|
|
"dev": "turbo run dev",
|
|
"dev:setup": "./scripts/dev.sh",
|
|
"build": "turbo run build",
|
|
"test": "turbo run test",
|
|
"test:python": "cd packages/core && source venv/bin/activate && python -m pytest",
|
|
"lint": "turbo run lint",
|
|
"format": "prettier --write .",
|
|
"type-check": "turbo run type-check",
|
|
"clean": "turbo run clean && rm -rf node_modules",
|
|
"python:api": "cd packages/core && source venv/bin/activate && python src/api.py",
|
|
"release": "semantic-release"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.0.0",
|
|
"eslint": "^8.0.0",
|
|
"prettier": "^3.0.0",
|
|
"turbo": "^1.10.0",
|
|
"typescript": "^5.0.0",
|
|
"concurrently": "^8.0.0",
|
|
"semantic-release": "^22.0.0",
|
|
"@semantic-release/changelog": "^6.0.0",
|
|
"@semantic-release/commit-analyzer": "^11.0.0",
|
|
"@semantic-release/git": "^10.0.0",
|
|
"@semantic-release/github": "^9.0.0",
|
|
"@semantic-release/release-notes-generator": "^12.0.0",
|
|
"conventional-changelog-conventionalcommits": "^7.0.0"
|
|
},
|
|
"keywords": [
|
|
"soroban",
|
|
"abacus",
|
|
"flashcards",
|
|
"education",
|
|
"math",
|
|
"nextjs",
|
|
"typescript"
|
|
],
|
|
"author": "",
|
|
"license": "MIT"
|
|
}
|