mirror of
https://github.com/nexu-io/open-design.git
synced 2026-06-01 03:14:35 +07:00
PR #2461 sync prep — resolves 14 conflicts merging 84 main-side commits on top of 58 release-side commits accumulated during the 0.8.0 cycle. Resolution summary: Take main (theirs) where main carried deliberate forward progress: - apps/web/src/components/PluginCard.tsx — 7 hunks, i18n migration: hardcoded English aria-labels/titles replaced with t() calls keyed on pluginCard.* (all 8 keys verified present in en.ts). - apps/web/src/components/TasksView.tsx — 1 hunk, source-ingestion feature: sortedRoutines (newest-first), sourceIngestionTemplates, patchSourceForm, submitSourceIngestion. activeCount/pausedCount semantics preserved (now keyed on sortedRoutines, count unchanged). - e2e/ui/app.test.ts — new node:fs/promises + tmpdir + path + @/timeouts imports needed by main-side test helpers. - e2e/ui/settings-local-cli-codex-fallback.test.ts — menu-dismissal helper block added by main. Keep both sides where each added a different field to the same object literal: - apps/web/src/components/ProjectView.tsx (locale + analyticsHints spread). - apps/web/src/components/DesignSystemFlow.tsx (locale + analyticsHints). Take release (ours) where release carried deliberate work that ships 0.8.0: - CHANGELOG.md — release-side 0.8.0 entry + PR link refs; main's Unreleased section was the same body of work, now finalized. - apps/landing-page/public/{apple-touch-icon,favicon}.png + apps/web/public/app-icon.svg — release-side visual refresh assets consistent with 0.8.0 stable ship. - tools/pack/src/linux.ts — packageVersion const required by line 466; taking main's empty line would build-error. - e2e/ui/project-management-flows.test.ts + e2e/ui/settings-api-protocol.test.ts + e2e/ui/settings-memory-routines.test.ts — release-side release-smoke hardening (shangxinyu1 + PerishFire) takes precedence on overlap. Closes-issue / unblocks: PR #2461 sync release/v0.8.0 → main.
68 lines
1.9 KiB
JSON
68 lines
1.9 KiB
JSON
{
|
|
"name": "@open-design/daemon",
|
|
"version": "0.8.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"main": "./dist/cli.js",
|
|
"types": "./dist/cli.d.ts",
|
|
"bin": {
|
|
"od": "./dist/cli.js"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/cli.d.ts",
|
|
"default": "./dist/cli.js"
|
|
},
|
|
"./package.json": "./package.json",
|
|
"./sidecar": {
|
|
"types": "./dist/sidecar/index.d.ts",
|
|
"default": "./dist/sidecar/index.js"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"package.json"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc -p tsconfig.json",
|
|
"daemon": "pnpm run build && node dist/cli.js --no-open",
|
|
"dev": "pnpm run build && node dist/cli.js --no-open",
|
|
"start": "pnpm run build && node dist/cli.js",
|
|
"test": "vitest run -c vitest.config.ts",
|
|
"typecheck": "pnpm --filter @open-design/contracts build && pnpm --filter @open-design/registry-protocol build && tsc -p tsconfig.json --noEmit && tsc -p tsconfig.tests.json --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "1.29.0",
|
|
"@open-design/agui-adapter": "workspace:*",
|
|
"@open-design/contracts": "workspace:*",
|
|
"@open-design/diagnostics": "workspace:*",
|
|
"@open-design/platform": "workspace:*",
|
|
"@open-design/plugin-runtime": "workspace:*",
|
|
"@open-design/registry-protocol": "workspace:*",
|
|
"@open-design/sidecar": "workspace:*",
|
|
"@open-design/sidecar-proto": "workspace:*",
|
|
"@opentelemetry/api": "1.9.1",
|
|
"better-sqlite3": "12.10.0",
|
|
"blake3-wasm": "2.1.5",
|
|
"cheerio": "1.2.0",
|
|
"chokidar": "5.0.0",
|
|
"express": "4.22.1",
|
|
"jszip": "3.10.1",
|
|
"multer": "2.1.1",
|
|
"posthog-node": "5.34.6",
|
|
"prom-client": "15.1.3",
|
|
"tar": "7.5.15",
|
|
"undici": "7.25.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/better-sqlite3": "7.6.13",
|
|
"@types/express": "4.17.25",
|
|
"@types/multer": "2.1.0",
|
|
"@types/node": "20.19.39",
|
|
"typescript": "5.9.3",
|
|
"vitest": "4.1.6"
|
|
},
|
|
"engines": {
|
|
"node": "~24"
|
|
}
|
|
}
|