jan/extensions-web/package.json
Dinh Long Nguyen b5b6e1dc19
add mcp for web (#6411)
* add mcp for web

* update /jan/v1 endpoint to /v1

* update mise and makefile

* update yarn lock

* use mcp oauth properly
2025-09-12 12:14:10 +07:00

38 lines
777 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"
},
"devDependencies": {
"@janhq/core": "workspace:*",
"typescript": "^5.3.3",
"vite": "^5.0.0",
"vitest": "^2.0.0",
"zustand": "^5.0.8"
},
"peerDependencies": {
"@janhq/core": "*",
"zustand": "^5.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.5"
}
}