chore: add facades refactor: core module export refactor: inference plugin - deprecate function registering (#537) * refactor: revamp inference plugin as class - deprecate function registering * refactor: monitoring plugin - deprecate service registering (#538) refactor: revamp inference plugin as class - deprecate function registering chore: update import refactor: plugin revamp - model management chore: update build steps and remove experimental plugins refactor: remove pluggable electron chore: add sorting for conversations chore: build plugins for testing chore: consistent plugin directory name chore: docs chore: fix CI chore: update conversation prefix
38 lines
700 B
JSON
38 lines
700 B
JSON
{
|
|
"name": "@janhq/core",
|
|
"version": "0.1.9",
|
|
"description": "Plugin core lib",
|
|
"keywords": [
|
|
"jan",
|
|
"plugin",
|
|
"core"
|
|
],
|
|
"homepage": "https://github.com/janhq",
|
|
"license": "MIT",
|
|
"main": "lib/index.js",
|
|
"types": "lib/index.d.ts",
|
|
"directories": {
|
|
"lib": "lib",
|
|
"test": "__tests__"
|
|
},
|
|
"exports": {
|
|
".": "./lib/index.js",
|
|
"./plugin": "./lib/plugins/index.js"
|
|
},
|
|
"files": [
|
|
"lib",
|
|
"README.md",
|
|
"LICENSE.md",
|
|
"package.json",
|
|
"!.DS_Store"
|
|
],
|
|
"scripts": {
|
|
"test": "echo \"Error: run tests from root\" && exit 1",
|
|
"build": "tsc"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^12.0.2",
|
|
"typescript": "^5.2.2"
|
|
}
|
|
}
|