* add platform guards * add service management * fix types * move to zustand for servicehub * update App Updater * update tauri missing move * update app updater * refactor: move PlatformFeatures to separate const file 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com> * change tauri fetch name * update implementation * update extension fetch * make web version run properly * disabled unused web settings * fix all tests * fix lint * fix tests * add mock for extension * fix build * update make and mise * fix tsconfig for web-extensions * fix loader type * cleanup * fix test * update error handling + mcp should be working * Update mcp init * use separate is_web_app build property * Remove fixed model catalog url * fix additional tests * fix download issue (event emitter not implemented correctly) * Update Title html * fix app logs * update root tsx render timing --------- Co-authored-by: Claude <noreply@anthropic.com>
35 lines
683 B
JSON
35 lines
683 B
JSON
{
|
|
"name": "@jan/extensions-web",
|
|
"version": "1.0.0",
|
|
"description": "Web-specific extensions for Jan AI",
|
|
"main": "dist/index.mjs",
|
|
"module": "dist/index.mjs",
|
|
"types": "dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.mjs"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc && vite build",
|
|
"dev": "tsc --watch",
|
|
"test": "vitest",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@janhq/core": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.3.3",
|
|
"vite": "^5.0.0",
|
|
"vitest": "^2.0.0"
|
|
},
|
|
"peerDependencies": {
|
|
"@janhq/core": "*"
|
|
}
|
|
}
|