28 lines
642 B
YAML
28 lines
642 B
YAML
|
|
name: feature_game_sudoku
|
||
|
|
description: The Sudoku game feature, including the game screen, board, and number pad.
|
||
|
|
version: 1.0.0
|
||
|
|
publish_to: 'none'
|
||
|
|
resolution: workspace
|
||
|
|
environment:
|
||
|
|
sdk: '^3.9.2'
|
||
|
|
flutter: '>=3.10.0'
|
||
|
|
|
||
|
|
dependencies:
|
||
|
|
flutter:
|
||
|
|
sdk: flutter
|
||
|
|
|
||
|
|
# 1. 공통 서비스 로직 (필수)
|
||
|
|
# GameLevel, SudokuGameDto, SudokuTheme, PuzzleService, IdentityService 등을 사용
|
||
|
|
service_api:
|
||
|
|
path: ../service_api
|
||
|
|
|
||
|
|
# 2. UI 및 상태 관리
|
||
|
|
provider: ^6.0.0 # (GameScreen에서 ThemeNotifier를 watch)
|
||
|
|
|
||
|
|
feature_common:
|
||
|
|
path: ../feature_common
|
||
|
|
|
||
|
|
dev_dependencies:
|
||
|
|
flutter_test:
|
||
|
|
sdk: flutter
|
||
|
|
lints: ^3.0.0
|