mirror of
https://github.com/unraid/api.git
synced 2026-01-02 06:30:02 -06:00
🤖 I have created a release *beep* *boop* --- ## [4.26.0](https://github.com/unraid/api/compare/v4.25.3...v4.26.0) (2025-11-17) ### Features * add cpu power query & subscription ([#1745](https://github.com/unraid/api/issues/1745)) ([d7aca81](d7aca81c60)) * add schema publishing to apollo studio ([#1772](https://github.com/unraid/api/issues/1772)) ([7e13202](7e13202aa1)) * add workflow_dispatch trigger to schema publishing workflow ([818e7ce](818e7ce997)) * apollo studio readme link ([c4cd0c6](c4cd0c6352)) * **cli:** make `unraid-api plugins remove` scriptable ([#1774](https://github.com/unraid/api/issues/1774)) ([64eb9ce](64eb9ce9b5)) * use persisted theme css to fix flashes on header ([#1784](https://github.com/unraid/api/issues/1784)) ([854b403](854b403fbd)) ### Bug Fixes * **api:** decode html entities before parsing notifications ([#1768](https://github.com/unraid/api/issues/1768)) ([42406e7](42406e795d)) * **connect:** disable api plugin if unraid plugin is absent ([#1773](https://github.com/unraid/api/issues/1773)) ([c264a18](c264a1843c)) * detection of flash backup activation state ([#1769](https://github.com/unraid/api/issues/1769)) ([d18eaf2](d18eaf2364)) * re-add missing header gradient styles ([#1787](https://github.com/unraid/api/issues/1787)) ([f8a6785](f8a6785e9c)) * respect OS safe mode in plugin loader ([#1775](https://github.com/unraid/api/issues/1775)) ([92af3b6](92af3b6115)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
47 lines
1.6 KiB
JSON
47 lines
1.6 KiB
JSON
{
|
|
"name": "@unraid/connect-plugin",
|
|
"version": "4.26.0",
|
|
"private": true,
|
|
"dependencies": {
|
|
"commander": "14.0.0",
|
|
"conventional-changelog": "7.1.1",
|
|
"conventional-changelog-conventionalcommits": "9.1.0",
|
|
"date-fns": "4.1.0",
|
|
"glob": "11.0.3",
|
|
"html-sloppy-escaper": "0.1.0",
|
|
"semver": "7.7.2",
|
|
"tsx": "4.20.5",
|
|
"zod": "3.25.76",
|
|
"zx": "8.8.1"
|
|
},
|
|
"type": "module",
|
|
"license": "GPL-2.0-or-later",
|
|
"scripts": {
|
|
"// Build scripts": "",
|
|
"build": "pnpm run build:txz && pnpm run build:plugin && ./scripts/output-local-url.sh",
|
|
"build:txz": "tsx builder/build-txz.ts",
|
|
"build:plugin": "tsx builder/build-plugin.ts",
|
|
"build:validate": "npm run env:validate && npm run build",
|
|
"build:watcher": "./scripts/build-watcher.sh",
|
|
"// Docker commands": "",
|
|
"build:watch": "./scripts/dc.sh pnpm run build:watcher",
|
|
"docker:build": "docker compose build",
|
|
"docker:run": "./scripts/dc.sh /bin/bash",
|
|
"docker:build-and-run": "pnpm run docker:build && pnpm run docker:run",
|
|
"// Environment management": "",
|
|
"env:init": "cp .env.example .env",
|
|
"env:validate": "test -f .env || (echo 'Error: .env file missing. Run npm run env:init first' && exit 1)",
|
|
"env:clean": "rm -f .env",
|
|
"// Testing": "",
|
|
"test": "vitest && pnpm run test:extractor && pnpm run test:shell-detection",
|
|
"test:extractor": "bash ./tests/test-extractor.sh",
|
|
"test:shell-detection": "bash ./tests/test-shell-detection.sh"
|
|
},
|
|
"devDependencies": {
|
|
"http-server": "14.1.1",
|
|
"nodemon": "3.1.10",
|
|
"vitest": "3.2.4"
|
|
},
|
|
"packageManager": "pnpm@10.15.0"
|
|
}
|