mirror of
https://github.com/unraid/api.git
synced 2025-12-31 05:29:48 -06:00
🤖 I have created a release *beep* *boop* --- ## [4.11.0](https://github.com/unraid/api/compare/v4.10.0...v4.11.0) (2025-07-28) ### Features * tailwind v4 ([#1522](https://github.com/unraid/api/issues/1522)) ([2c62e0a](2c62e0ad09)) * **web:** install and configure nuxt ui ([#1524](https://github.com/unraid/api/issues/1524)) ([407585c](407585cd40)) ### Bug Fixes * add missing breakpoints ([#1535](https://github.com/unraid/api/issues/1535)) ([f5352e3](f5352e3a26)) * border color incorrect in tailwind ([#1544](https://github.com/unraid/api/issues/1544)) ([f14b74a](f14b74af91)) * **connect:** omit extraneous fields during connect config validation ([#1538](https://github.com/unraid/api/issues/1538)) ([45bd736](45bd73698b)) * **deps:** pin dependencies ([#1528](https://github.com/unraid/api/issues/1528)) ([a74d935](a74d935b56)) * **deps:** pin dependency @nuxt/ui to 3.2.0 ([#1532](https://github.com/unraid/api/issues/1532)) ([8279531](8279531f2b)) * **deps:** update all non-major dependencies ([#1510](https://github.com/unraid/api/issues/1510)) ([1a8da6d](1a8da6d92b)) * **deps:** update all non-major dependencies ([#1520](https://github.com/unraid/api/issues/1520)) ([e2fa648](e2fa648d1c)) * inject Tailwind CSS into client entry point ([#1537](https://github.com/unraid/api/issues/1537)) ([86b6c4f](86b6c4f85b)) * make settings grid responsive ([#1463](https://github.com/unraid/api/issues/1463)) ([9dfdb8d](9dfdb8dce7)) * **notifications:** gracefully handle & mask invalid notifications ([#1529](https://github.com/unraid/api/issues/1529)) ([05056e7](05056e7ca1)) * truncate log files when they take up more than 5mb of space ([#1530](https://github.com/unraid/api/issues/1530)) ([0a18b38](0a18b38008)) * use async for primary file read/writes ([#1531](https://github.com/unraid/api/issues/1531)) ([23b2b88](23b2b88461)) --- 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>
44 lines
1.4 KiB
JSON
44 lines
1.4 KiB
JSON
{
|
|
"name": "@unraid/connect-plugin",
|
|
"version": "4.11.0",
|
|
"private": true,
|
|
"dependencies": {
|
|
"commander": "14.0.0",
|
|
"conventional-changelog": "6.0.0",
|
|
"date-fns": "4.1.0",
|
|
"glob": "11.0.3",
|
|
"html-sloppy-escaper": "0.1.0",
|
|
"semver": "7.7.2",
|
|
"tsx": "4.20.3",
|
|
"zod": "3.25.76",
|
|
"zx": "8.7.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"
|
|
},
|
|
"devDependencies": {
|
|
"http-server": "14.1.1",
|
|
"nodemon": "3.1.10",
|
|
"vitest": "3.2.4"
|
|
},
|
|
"packageManager": "pnpm@10.13.1"
|
|
}
|