* chore: bump cortex 1.0.11-rc10 * chore: bump to latest cortex release * feat: Cortex API Authorization * chore: correct CI CD repo name * chore: correct new menloresearch repo name * feat: rotate api token for each run (#4820) * feat: rotate api token for each run * chore: correct github repo url * chore: correct github api url * chore: should not filter out models first launch * chore: bump cortex release * chore: should get hardware information on launch (#4821) * chore: should have an option to not revalidate hardware information * chore: cortex.cpp gpu activation could cause a race condition (#4825) * fix: jan beta logo displayed in jan release (#4828) --------- Co-authored-by: David <davidpt.janai@gmail.com> Co-authored-by: Nguyen Ngoc Minh <91668012+Minh141120@users.noreply.github.com>
47 lines
1.2 KiB
JSON
47 lines
1.2 KiB
JSON
{
|
|
"name": "@janhq/hardware-management-extension",
|
|
"productName": "Hardware Management",
|
|
"version": "1.0.0",
|
|
"description": "Manages Better Hardware settings.",
|
|
"main": "dist/index.js",
|
|
"node": "dist/node/index.cjs.js",
|
|
"author": "Jan <service@jan.ai>",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"test": "jest",
|
|
"build": "rolldown -c rolldown.config.mjs",
|
|
"codesign:darwin": "../../.github/scripts/auto-sign.sh",
|
|
"codesign:win32:linux": "echo 'No codesigning required'",
|
|
"codesign": "run-script-os",
|
|
"build:publish": "rimraf *.tgz --glob || true && yarn build && yarn codesign && 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",
|
|
"run-script-os": "^1.1.6",
|
|
"ts-loader": "^9.5.0",
|
|
"typescript": "^5.3.3"
|
|
},
|
|
"dependencies": {
|
|
"@janhq/core": "../../core/package.tgz",
|
|
"ky": "^1.7.2",
|
|
"p-queue": "^8.0.1"
|
|
},
|
|
"bundledDependencies": [
|
|
"@janhq/core"
|
|
],
|
|
"hardwares": {
|
|
"node": ">=18.0.0"
|
|
},
|
|
"files": [
|
|
"dist/*",
|
|
"package.json",
|
|
"README.md"
|
|
]
|
|
}
|