* feature: event based plugin * chore: update README.md * Update yarn script for build plugins (#363) * Update yarn script for build plugins * Plugin-core install from npmjs instead of from local --------- Co-authored-by: Hien To <> * #360 plugin preferences (#361) * feature: #360 plugin preferences * chore: update core-plugin README.md * chore: create collections on start * chore: bumb core version * chore: update README * chore: notify preferences update * fix: preference update --------- Co-authored-by: hiento09 <136591877+hiento09@users.noreply.github.com>
47 lines
1.1 KiB
JSON
47 lines
1.1 KiB
JSON
{
|
|
"name": "azure-openai-plugin",
|
|
"version": "1.0.0",
|
|
"description": "Inference plugin for Azure OpenAI",
|
|
"icon": "https://static-assets.jan.ai/openai-icon.jpg",
|
|
"main": "dist/index.js",
|
|
"author": "Jan",
|
|
"license": "MIT",
|
|
"activationPoints": [
|
|
"init"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc -b . && webpack --config webpack.config.js",
|
|
"postinstall": "rimraf ./*.tgz && npm run build && rimraf dist/nitro/* && cpx \"nitro/**\" \"dist/nitro\"",
|
|
"build:publish": "npm pack && cpx *.tgz ../../pre-install"
|
|
},
|
|
"exports": {
|
|
".": "./dist/index.js",
|
|
"./main": "./dist/module.js"
|
|
},
|
|
"devDependencies": {
|
|
"cpx": "^1.5.0",
|
|
"rimraf": "^3.0.2",
|
|
"webpack": "^5.88.2",
|
|
"webpack-cli": "^5.1.4"
|
|
},
|
|
"dependencies": {
|
|
"@janhq/plugin-core": "^0.1.7",
|
|
"azure-openai": "^0.9.4",
|
|
"kill-port-process": "^3.2.0",
|
|
"tcp-port-used": "^1.0.2",
|
|
"ts-loader": "^9.5.0"
|
|
},
|
|
"bundledDependencies": [
|
|
"tcp-port-used",
|
|
"kill-port-process"
|
|
],
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
},
|
|
"files": [
|
|
"dist/*",
|
|
"package.json",
|
|
"README.md"
|
|
]
|
|
}
|