mirror of
https://github.com/getpaseo/paseo.git
synced 2026-07-29 12:01:31 +00:00
* Extract client SDK package * Polish SDK client identity defaults * Build client before dependent CI jobs * Restore daemon client server export * Extract protocol and client SDK packages * Fix provider override schema validation * Fix app test daemon client imports * Simplify workspace build targets * Fix CLI test server build bootstrap * Run SDK package tests in CI * Fix rebase package split drift * Restore lockfile registry metadata * Update SDK config test for prompt default * Move terminal stream router test to client package * Fix rebase drift for protocol imports * Fix SDK agent capability fixture * Restore legacy server client exports * Fix server export compatibility test * Advertise custom mode icon client capability * Remove server daemon-client exports * Format rebased mode control import * Fix rebase drift for protocol imports Files added by upstream PRs (#893, #1147, #1154) referenced the pre-split shared/ paths that this branch moves into @getpaseo/protocol. Redirect those imports to the protocol package so typecheck stays green after the rebase.
44 lines
1.1 KiB
JSON
44 lines
1.1 KiB
JSON
{
|
|
"name": "@getpaseo/desktop",
|
|
"version": "0.1.83",
|
|
"private": true,
|
|
"description": "Paseo desktop app (Electron wrapper)",
|
|
"homepage": "https://paseo.sh",
|
|
"license": "AGPL-3.0-or-later",
|
|
"author": {
|
|
"name": "Mohamed Boudra",
|
|
"email": "hello@moboudra.com"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/getpaseo/paseo.git"
|
|
},
|
|
"main": "dist/main.js",
|
|
"scripts": {
|
|
"build": "npm --prefix ../.. run build:server && npm run build:main && electron-builder --config electron-builder.yml",
|
|
"build:main": "tsc -p tsconfig.json",
|
|
"dev": "./scripts/dev.sh",
|
|
"dev:win": "powershell ./scripts/dev.ps1",
|
|
"test": "vitest run",
|
|
"typecheck": "tsgo --noEmit -p tsconfig.json"
|
|
},
|
|
"dependencies": {
|
|
"@getpaseo/cli": "*",
|
|
"@getpaseo/server": "*",
|
|
"electron-log": "^5.4.3",
|
|
"electron-updater": "^6.6.2",
|
|
"ws": "^8.14.2",
|
|
"zod": "^3.23.8"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "24.6.0",
|
|
"@types/ws": "^8.5.14",
|
|
"electron": "41.2.0",
|
|
"electron-builder": "26.8.1",
|
|
"typescript": "5.9.3",
|
|
"unzip-crx-3": "^0.2.0",
|
|
"vitest": "^4.1.6",
|
|
"wait-on": "8.0.5"
|
|
}
|
|
}
|