Files
api/packages/unraid-api-plugin-connect/package.json
Michael Datelle 711cc9ac92 feat: build out docker components (#1427)
<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->
## Summary by CodeRabbit

* **New Features**
* Introduced comprehensive, customizable Accordion, Dialog,
DropdownMenu, and Select UI components with enhanced prop-driven and
slot-based APIs.
* Added grouped exports for UI primitives, simplifying imports and
usage.
* Added new Storybook stories demonstrating varied usage scenarios for
Accordion, Dialog, DropdownMenu, and Select components.

* **Refactor**
* Replaced external UI dependencies with locally defined, typed
components for Accordion, Dialog, DropdownMenu, and Select.
* Streamlined component APIs by consolidating exports to main components
and type exports, removing subcomponent exports.
* Simplified dialog and dropdown menu implementations with explicit
props, events, and slots.
* Updated component styles and class bindings for improved appearance
and interaction.
* Refined select component into a fully featured, typed implementation
supporting grouping and multiple selection.
* Replaced custom dropdown menu implementation in user profile with the
new DropdownMenu component.
* Simplified internal prop forwarding using reactive utilities for
dropdown menu and select subcomponents.
* Improved dropdown menu stories with declarative props and slots,
removing manual subcomponent composition.
* Simplified notification filter UI by replacing nested select
subcomponents with a declarative items prop.

* **Bug Fixes**
* Improved dropdown and select item handling, including disabled states,
separators, and grouped options.

* **Style**
* Enhanced visual consistency and spacing in documentation and UI
components.
  * Updated component classes for better appearance and usability.

* **Chores**
* Upgraded `@jsonforms` dependencies across all packages to version
`^3.6.0`.
  * Improved test and mock setups for new component structures.
<!-- end of auto-generated comment: release notes by coderabbit.ai -->

---------

Co-authored-by: mdatelle <mike@datelle.net>
Co-authored-by: Eli Bosley <ekbosley@gmail.com>
2025-07-03 16:40:06 -04:00

104 lines
3.2 KiB
JSON

{
"name": "unraid-api-plugin-connect",
"version": "1.0.0",
"main": "dist/index.js",
"type": "module",
"files": [
"dist",
"readme.md"
],
"scripts": {
"test": "vitest",
"clean": "rimraf dist",
"build": "tsc",
"prepare": "npm run build",
"format": "prettier --write \"src/**/*.{ts,js,json}\"",
"codegen": "MOTHERSHIP_GRAPHQL_LINK='https://staging.mothership.unraid.net/ws' graphql-codegen --config codegen.ts"
},
"keywords": [
"unraid",
"connect",
"unraid plugin"
],
"author": "Lime Technology, Inc. <unraid.net>",
"license": "GPL-2.0-or-later",
"description": "Unraid Connect plugin for Unraid API",
"devDependencies": {
"@apollo/client": "^3.11.8",
"@faker-js/faker": "^9.8.0",
"@graphql-codegen/cli": "^5.0.3",
"@graphql-typed-document-node/core": "^3.2.0",
"@ianvs/prettier-plugin-sort-imports": "^4.4.1",
"@jsonforms/core": "^3.6.0",
"@nestjs/apollo": "^13.0.3",
"@nestjs/common": "^11.0.11",
"@nestjs/config": "^4.0.2",
"@nestjs/core": "^11.0.11",
"@nestjs/event-emitter": "^3.0.1",
"@nestjs/graphql": "^13.0.3",
"@nestjs/schedule": "^6.0.0",
"@runonflux/nat-upnp": "^1.0.2",
"@types/ini": "^4.1.1",
"@types/ip": "^1.1.3",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.14.0",
"@types/ws": "^8.18.0",
"camelcase-keys": "^9.1.3",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"execa": "^9.5.1",
"fast-check": "^4.1.1",
"got": "^14.4.6",
"graphql": "^16.11.0",
"graphql-scalars": "^1.23.0",
"graphql-subscriptions": "^3.0.0",
"graphql-ws": "^6.0.0",
"ini": "^5.0.0",
"jose": "^6.0.0",
"lodash-es": "^4.17.21",
"nest-authz": "^2.14.0",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"rxjs": "^7.8.2",
"type-fest": "^4.37.0",
"typescript": "^5.8.2",
"vitest": "^3.2.4",
"ws": "^8.18.0",
"zen-observable-ts": "^1.1.0"
},
"dependencies": {
"@unraid/shared": "workspace:*",
"ip": "^2.0.1",
"node-cache": "^5.1.2"
},
"peerDependencies": {
"@apollo/client": "^3.11.8",
"@graphql-typed-document-node/core": "^3.2.0",
"@jsonforms/core": "^3.6.0",
"@nestjs/apollo": "^13.0.3",
"@nestjs/common": "^11.0.11",
"@nestjs/config": "^4.0.2",
"@nestjs/core": "^11.0.11",
"@nestjs/event-emitter": "^3.0.1",
"@nestjs/graphql": "^13.0.3",
"@nestjs/schedule": "^6.0.0",
"@runonflux/nat-upnp": "^1.0.2",
"camelcase-keys": "^9.1.3",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"execa": "^9.5.1",
"got": "^14.4.6",
"graphql": "^16.11.0",
"graphql-scalars": "^1.23.0",
"graphql-subscriptions": "^3.0.0",
"graphql-ws": "^6.0.0",
"ini": "^5.0.0",
"jose": "^6.0.0",
"lodash-es": "^4.17.21",
"nest-authz": "^2.14.0",
"rxjs": "^7.8.2",
"ws": "^8.18.0",
"zen-observable-ts": "^1.1.0"
}
}