@dexicon/sync-core
v0.1.2
Published
Core sync library for Dexicon - extracts and uploads coding session data from multiple IDE sources
Maintainers
Readme
@dexicon/sync-core
Core sync library for Dexicon.
Development
Setup
npm installInstall Pre-commit Hooks
npm run prepareThis installs Husky hooks that run linting, type checking, and tests before each commit.
Testing
# Run linting (Biome)
npm run lint
# Run type checking (TypeScript)
npm run typecheck
# Run unit tests (Vitest)
npm run test:run
# Run all checks at once
npm run lint && npm run typecheck && npm run test:run