* call jan api * fix lint * ci: add jan server web * chore: add Dockerfile * clean up ui ux and support for reasoning fields, make app spa * add logo * chore: update tag for preview image * chore: update k8s service name * chore: update image tag and image name * fixed test --------- Co-authored-by: Minh141120 <minh.itptit@gmail.com> Co-authored-by: Nguyen Ngoc Minh <91668012+Minh141120@users.noreply.github.com>
35 lines
709 B
JSON
35 lines
709 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"
|
|
}
|
|
}
|