mirror of
https://github.com/unraid/api.git
synced 2026-01-01 22:20:05 -06:00
🤖 I have created a release *beep* *boop* --- ## [4.2.0](https://github.com/unraid/api/compare/v4.1.3...v4.2.0) (2025-03-18) ### Features * add resolver for logging ([#1222](https://github.com/unraid/api/issues/1222)) ([3f590c5](3f590c56e3)) * connect settings web component ([#1211](https://github.com/unraid/api/issues/1211)) ([acbf46d](acbf46df3f)) * improve local dev with install path ([#1221](https://github.com/unraid/api/issues/1221)) ([ce61fee](ce61fee41c)) * split plugin builds ([d63e54b](d63e54bdbc)) * swap to absolute paths for css ([#1224](https://github.com/unraid/api/issues/1224)) ([dd9983c](dd9983c8b7)) * update theme application logic and color picker ([#1181](https://github.com/unraid/api/issues/1181)) ([a030626](a0306269c6)) * use patch version if needed on update check ([#1227](https://github.com/unraid/api/issues/1227)) ([12e16a6](12e16a6404)) ### Bug Fixes * add INELIGIBLE state to ConfigErrorState enum ([#1220](https://github.com/unraid/api/issues/1220)) ([0f550f9](0f550f9d94)) * **api:** dynamix notifications dir during development ([#1216](https://github.com/unraid/api/issues/1216)) ([2700722](270072266a)) * **api:** type imports from generated graphql types ([#1215](https://github.com/unraid/api/issues/1215)) ([bce06cd](bce06cd76c)) * **deps:** update dependency @nestjs/schedule to v5 ([#1197](https://github.com/unraid/api/issues/1197)) ([85c8ef5](85c8ef53ad)) * **deps:** update dependency @vueuse/core to v12 ([#1199](https://github.com/unraid/api/issues/1199)) ([ff8eba3](ff8eba3df5)) * fix changelog thing again ([a9d5ca8](a9d5ca8899)) * fix invalid path to node with sh execution ([#1213](https://github.com/unraid/api/issues/1213)) ([f1838bf](f1838bf69a)) * load tag correctly ([b24a575](b24a575cbb)) * log errors ([365dcae](365dcae04b)) * one-command dev & web env files ([#1214](https://github.com/unraid/api/issues/1214)) ([4641894](4641894240)) * re-release fixed ([b491590](b49159022d)) * recreate watcher on path change ([#1203](https://github.com/unraid/api/issues/1203)) ([bde37d6](bde37d6751)) * update brand loading variants for consistent sizing ([#1223](https://github.com/unraid/api/issues/1223)) ([1b0fbaf](1b0fbaf81a)) --- 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.5 KiB
JSON
44 lines
1.5 KiB
JSON
{
|
|
"name": "@unraid/connect-plugin",
|
|
"version": "4.2.0",
|
|
"private": true,
|
|
"dependencies": {
|
|
"commander": "^13.1.0",
|
|
"conventional-changelog": "^6.0.0",
|
|
"date-fns": "^4.1.0",
|
|
"glob": "^11.0.1",
|
|
"html-sloppy-escaper": "^0.1.0",
|
|
"semver": "^7.7.1",
|
|
"tsx": "^4.19.2",
|
|
"zod": "^3.24.1",
|
|
"zx": "^8.3.2"
|
|
},
|
|
"type": "module",
|
|
"license": "GPL-2.0-only",
|
|
"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": "nodemon --verbose --watch 'source/**/*' --ext ts,js --ignore '*.test.ts' --ignore 'node_modules/**' --ignore 'source/dynamix.unraid.net/install/**' --delay 5s --exec 'pnpm run build'",
|
|
"// 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.7",
|
|
"vitest": "^3.0.7"
|
|
},
|
|
"packageManager": "pnpm@10.4.1"
|
|
}
|