- Add ProjectContext and DewConfig models to core - Add Ticket model with YAML frontmatter serialisation - Add TicketStore with auto-incrementing 4-digit IDs - Implement create/get/update/delete subcommands under KanbanCommand - Expand tests: ProjectContext, Ticket roundtrip, TicketStore CRUD (19 total) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
19 lines
389 B
YAML
19 lines
389 B
YAML
name: dew_core
|
|
description: Core shared types, interfaces, and configuration for the Dew project management tool.
|
|
version: 1.0.0
|
|
# repository: https://github.com/my_org/my_repo
|
|
publish_to: none
|
|
resolution: workspace
|
|
|
|
environment:
|
|
sdk: ^3.11.4
|
|
|
|
# Add regular dependencies here.
|
|
dependencies:
|
|
args: ^2.7.0
|
|
path: ^1.9.0
|
|
yaml: ^3.1.0
|
|
|
|
dev_dependencies:
|
|
lints: ^6.0.0
|
|
test: ^1.25.6
|