47 lines
1.1 KiB
JSON
47 lines
1.1 KiB
JSON
{
|
|
"name": "@janhq/inference-cohere-extension",
|
|
"productName": "Cohere Inference Engine",
|
|
"version": "1.0.0",
|
|
"description": "This extension enables Cohere chat completion API calls",
|
|
"main": "dist/index.js",
|
|
"module": "dist/module.js",
|
|
"engine": "cohere",
|
|
"author": "Jan <service@jan.ai>",
|
|
"license": "AGPL-3.0",
|
|
"scripts": {
|
|
"build": "rolldown -c rolldown.config.mjs",
|
|
"build:publish": "rimraf *.tgz --glob || true && yarn build && npm pack && cpx *.tgz ../../pre-install"
|
|
},
|
|
"exports": {
|
|
".": "./dist/index.js",
|
|
"./main": "./dist/module.js"
|
|
},
|
|
"devDependencies": {
|
|
"cpx": "^1.5.0",
|
|
"rimraf": "^3.0.2",
|
|
"rolldown": "1.0.0-beta.1",
|
|
"ts-loader": "^9.5.0",
|
|
"typescript": "^5.7.2"
|
|
},
|
|
"dependencies": {
|
|
"@janhq/core": "../../core/package.tgz",
|
|
"fetch-retry": "^5.0.6",
|
|
"ulidx": "^2.3.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
},
|
|
"files": [
|
|
"dist/*",
|
|
"package.json",
|
|
"README.md"
|
|
],
|
|
"bundleDependencies": [
|
|
"fetch-retry"
|
|
],
|
|
"installConfig": {
|
|
"hoistingLimits": "workspaces"
|
|
},
|
|
"packageManager": "yarn@4.5.3"
|
|
}
|