mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 02:24:16 +00:00
- Introduces a new Music Library system for managing favorites (tracks, playlists, releases), replacing the previous TrackLike model. - Completely revamps the Studio TV profile page, adding live statistics, stream configuration, restream management, and media URL display. - Enhances the media player with a custom seekbar and improved audio playback logic for MPD and non-MPD sources. - Lays foundational groundwork for chat encryption with new models and APIs. - Refactors critical UI components like PlaylistView and PagePanel. - Standardizes monorepo development scripts to use npm. - Updates comty.js submodule and adds various new UI components.
23 lines
572 B
JSON
Executable File
23 lines
572 B
JSON
Executable File
{
|
|
"author": "RageStudio",
|
|
"license": "ComtyLicense",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "concurrently -k \"yarn dev:client\" \"yarn dev:server\"",
|
|
"dev:server": "cd packages/server && npm run dev",
|
|
"dev:client": "cd packages/app && npm run dev",
|
|
"postinstall": "node ./scripts/post-install.js"
|
|
},
|
|
"dependencies": {
|
|
"7zip-min": "1.4.3",
|
|
"@ragestudio/hermes": "^1.0.0",
|
|
"axios": "^1.4.0",
|
|
"concurrently": "^7.5.0",
|
|
"dotenv": "16.0.3",
|
|
"form-data": "^4.0.0",
|
|
"mintlify": "^4.0.206",
|
|
"octokit": "^2.0.14"
|
|
},
|
|
"_web_app_path": "packages/app"
|
|
}
|