mirror of
https://github.com/nexu-io/open-design.git
synced 2026-06-01 03:14:35 +07:00
Bumps 14 workspace package.json files from 0.7.0 to 0.8.0:
- root, apps/{web,daemon,desktop,landing-page}
- packages/{contracts,host,platform,sidecar,sidecar-proto}
- tools/{dev,pack,pr}, e2e
apps/packaged was already at 0.8.0 from the preview lane.
Independently versioned packages keep their own tracks.
Adds CHANGELOG [0.8.0] - 2026-05-20 entry covering the
305 PRs merged since 0.7.0 by 75 contributors:
- Plugin engine rebuild + Plugin Registry surface
- Headless by default (desktop is thin wrapper around CLI)
- Critique Theater Phases 9 through 16
- 149 design systems with structured tokens.css
- Italian locale + CJK font fallback
- Leonardo.ai, ElevenLabs, SenseAudio providers
- Windows packaged auto-update
- Visual refresh + Quick-brief discovery overhaul
- PostHog v2 analytics
- Manual edit UX overhaul
37 lines
893 B
JSON
37 lines
893 B
JSON
{
|
|
"name": "@open-design/desktop",
|
|
"version": "0.8.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"main": "./dist/main/index.js",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"exports": {
|
|
"./main": {
|
|
"types": "./dist/main/index.d.ts",
|
|
"default": "./dist/main/index.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsc -p tsconfig.json",
|
|
"test": "vitest run -c vitest.config.ts",
|
|
"typecheck": "tsc -p tsconfig.json --noEmit && tsc -p tsconfig.tests.json --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@open-design/diagnostics": "workspace:*",
|
|
"@open-design/host": "workspace:*",
|
|
"@open-design/platform": "workspace:*",
|
|
"@open-design/sidecar": "workspace:*",
|
|
"@open-design/sidecar-proto": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "24.12.2",
|
|
"electron": "41.3.0",
|
|
"typescript": "6.0.3",
|
|
"vitest": "4.1.6"
|
|
},
|
|
"engines": {
|
|
"node": "~24"
|
|
}
|
|
}
|