- Add Makefile with dev/build/test/docker/ci commands - Rewrite README.md with architecture, quickstart, env vars (EN + RU) - Add Forgejo CI workflow (.forgejo/workflows/test.yml) - Update GitHub CI workflow for pnpm monorepo structure - Fix unused imports in bridge test file (typecheck) - Add test/ci scripts to root package.json - Docker compose build verified (bridge + frontend images) - Full local CI passes: typecheck → test (16/16) → build
15 lines
365 B
JSON
15 lines
365 B
JSON
{
|
|
"name": "hermes-kanban-miniapp",
|
|
"private": true,
|
|
"packageManager": "pnpm@9.15.4",
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"scripts": {
|
|
"build": "pnpm -r build",
|
|
"typecheck": "pnpm -r typecheck",
|
|
"test": "pnpm -r test",
|
|
"clean": "pnpm -r clean",
|
|
"ci": "pnpm install --frozen-lockfile && pnpm typecheck && pnpm test && pnpm build"
|
|
}
|
|
}
|