* feat: adding create bot functionality Signed-off-by: James <james@jan.ai> * update the temperature progress bar Signed-off-by: James <james@jan.ai> * WIP baselayout * Mapping plugins with available preferences * Added loader component * WIP working another screen * Cleanup types and avoid import one by one * Prepare bottom bar * Add css variables colors to enable user select the accent * Enable change accent color * Seperate css variable * Fix conflict * Add blank state of my model empty * Restyle explore models page * Enable user config left sidebar * Restyle my models page * WIP styling chat page * Restyling chat message * Fix conflict * Adde form preferences setting plugins * Fixed form bot info * Sidebar bot chat * Showing rightbar for both setting when user created bot * Fix style bot info * Using overflow auto intead of scroll * Remove script built UI from root package * Fix missig import * Resolve error linter * fix e2e tests Signed-off-by: James <james@jan.ai> --------- Signed-off-by: James <james@jan.ai> Co-authored-by: James <james@jan.ai>
48 lines
1.4 KiB
JSON
48 lines
1.4 KiB
JSON
{
|
|
"name": "@janhq/data-plugin",
|
|
"version": "1.0.7",
|
|
"description": "The Data Connector provides easy access to a data API using the PouchDB engine. It offers accessible data management capabilities.",
|
|
"icon": "https://raw.githubusercontent.com/tailwindlabs/heroicons/88e98b0c2b458553fbadccddc2d2f878edc0387b/src/20/solid/circle-stack.svg",
|
|
"main": "dist/esm/index.js",
|
|
"module": "dist/cjs/module.js",
|
|
"author": "Jan <service@jan.ai>",
|
|
"license": "MIT",
|
|
"activationPoints": [
|
|
"init"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc -b ./config/tsconfig.esm.json && tsc -b ./config/tsconfig.cjs.json && webpack --config webpack.config.js",
|
|
"postinstall": "rimraf *.tgz --glob && npm run build",
|
|
"build:publish": "npm pack && cpx *.tgz ../../electron/core/pre-install"
|
|
},
|
|
"exports": {
|
|
"import": "./dist/esm/index.js",
|
|
"require": "./dist/cjs/module.js",
|
|
"default": "./dist/esm/index.js"
|
|
},
|
|
"devDependencies": {
|
|
"cpx": "^1.5.0",
|
|
"node-pre-gyp": "^0.17.0",
|
|
"rimraf": "^3.0.2",
|
|
"ts-loader": "^9.4.4",
|
|
"ts-node": "^10.9.1",
|
|
"typescript": "^5.2.2",
|
|
"webpack": "^5.88.2",
|
|
"webpack-cli": "^5.1.4"
|
|
},
|
|
"bundledDependencies": [
|
|
"pouchdb-node",
|
|
"pouchdb-find"
|
|
],
|
|
"files": [
|
|
"dist/**",
|
|
"package.json",
|
|
"node_modules"
|
|
],
|
|
"dependencies": {
|
|
"@janhq/core": "^0.1.6",
|
|
"pouchdb-find": "^8.0.1",
|
|
"pouchdb-node": "^8.0.1"
|
|
}
|
|
}
|