mirror of
https://github.com/getpaseo/paseo.git
synced 2026-07-29 12:01:31 +00:00
Versions 1.2.7–1.2.9 have a broken npm publish where compiled files land in dist/src/ but the package exports map references dist/v2/, causing ERR_MODULE_NOT_FOUND on startup. Pin to 1.2.6 which has the correct layout. Closes #64 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
111 lines
3.5 KiB
JSON
111 lines
3.5 KiB
JSON
{
|
|
"name": "@getpaseo/server",
|
|
"version": "0.1.15",
|
|
"description": "Paseo backend server",
|
|
"type": "module",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"types": "./dist/server/server/exports.d.ts",
|
|
"files": [
|
|
"dist/server",
|
|
"dist/src",
|
|
"dist/scripts",
|
|
"README.md",
|
|
".env.example",
|
|
"agent-prompt.md"
|
|
],
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/server/server/exports.d.ts",
|
|
"default": [
|
|
"./dist/server/server/exports.js",
|
|
"./src/server/exports.ts"
|
|
]
|
|
},
|
|
"./utils/tool-call-parsers": {
|
|
"types": "./dist/server/utils/tool-call-parsers.d.ts",
|
|
"default": [
|
|
"./dist/server/utils/tool-call-parsers.js",
|
|
"./src/utils/tool-call-parsers.ts"
|
|
]
|
|
}
|
|
},
|
|
"scripts": {
|
|
"dev": "NODE_ENV=development tsx scripts/dev-runner.ts",
|
|
"dev:tsx": "NODE_ENV=development tsx watch --ignore '**/*.timestamp-*' src/server/index.ts",
|
|
"build": "node -e \"require('node:fs').rmSync('dist',{ recursive: true, force: true })\" && npm run build:lib && npm run build:scripts",
|
|
"build:lib": "tsc -p tsconfig.server.json --incremental false",
|
|
"build:scripts": "tsc -p tsconfig.scripts.json --incremental false && mkdir -p dist/scripts && cp scripts/mcp-stdio-socket-bridge-cli.mjs dist/scripts/mcp-stdio-socket-bridge-cli.mjs",
|
|
"prepack": "npm run build",
|
|
"start": "NODE_ENV=production node dist/server/server/index.js",
|
|
"typecheck": "tsc -p tsconfig.server.typecheck.json --noEmit",
|
|
"generate:config-schema": "tsx scripts/generate-config-schema.ts",
|
|
"speech:models": "tsx scripts/list-speech-models.ts",
|
|
"speech:download": "tsx scripts/download-speech-models.ts",
|
|
"speech:tts:matrix": "tsx scripts/generate-sherpa-tts-matrix.ts",
|
|
"speech:transcribe:local": "tsx scripts/transcribe-local-wav.ts",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"test:ui": "vitest --ui",
|
|
"test:e2e": "playwright test",
|
|
"test:e2e:ui": "playwright test --ui",
|
|
"test:e2e:mobile": "playwright test --project='Mobile Chrome'"
|
|
},
|
|
"dependencies": {
|
|
"@ai-sdk/openai": "2.0.52",
|
|
"@anthropic-ai/claude-agent-sdk": "^0.2.11",
|
|
"@deepgram/sdk": "^3.4.0",
|
|
"@getpaseo/relay": "0.1.15",
|
|
"@lezer/common": "^1.5.0",
|
|
"@lezer/css": "^1.3.0",
|
|
"@lezer/highlight": "^1.2.3",
|
|
"@lezer/html": "^1.3.13",
|
|
"@lezer/javascript": "^1.5.4",
|
|
"@lezer/json": "^1.0.3",
|
|
"@lezer/markdown": "^1.6.2",
|
|
"@lezer/python": "^1.1.18",
|
|
"@modelcontextprotocol/sdk": "^1.20.1",
|
|
"@opencode-ai/sdk": "1.2.6",
|
|
"@sctg/sentencepiece-js": "^1.1.0",
|
|
"@xterm/headless": "^6.0.0",
|
|
"ai": "5.0.78",
|
|
"ajv": "^8.17.1",
|
|
"dotenv": "^17.2.3",
|
|
"express": "^4.18.2",
|
|
"express-basic-auth": "^1.2.1",
|
|
"lezer-elixir": "^1.1.2",
|
|
"mnemonic-id": "^3.2.7",
|
|
"node-pty": "1.2.0-beta.11",
|
|
"onnxruntime-node": "^1.23.0",
|
|
"openai": "^4.20.0",
|
|
"pino": "^10.2.0",
|
|
"pino-pretty": "^13.1.3",
|
|
"qrcode": "^1.5.4",
|
|
"sherpa-onnx": "^1.12.23",
|
|
"sherpa-onnx-node": "^1.12.23",
|
|
"strip-ansi": "^7.1.2",
|
|
"tiny-invariant": "^1.3.3",
|
|
"uuid": "^9.0.1",
|
|
"ws": "^8.14.2",
|
|
"zod": "^3.23.8",
|
|
"zod-to-json-schema": "^3.25.1"
|
|
},
|
|
"devDependencies": {
|
|
"@playwright/test": "^1.56.1",
|
|
"@types/express": "^4.17.20",
|
|
"@types/node": "^20.9.0",
|
|
"@types/qrcode": "^1.5.6",
|
|
"@types/uuid": "^9.0.7",
|
|
"@types/ws": "^8.5.8",
|
|
"@vitest/ui": "^3.2.4",
|
|
"playwright": "^1.56.1",
|
|
"tsx": "^4.6.0",
|
|
"typescript": "^5.2.2",
|
|
"vitest": "^3.2.4"
|
|
},
|
|
"overrides": {
|
|
"lightningcss": "1.30.1"
|
|
}
|
|
}
|