Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ninjadev64 committed Aug 6, 2024
1 parent f24dedc commit add7c74
Show file tree
Hide file tree
Showing 7 changed files with 382 additions and 354 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,4 +67,4 @@ To enable automatic launch on startup, the light theme, or to change the languag

You'll need to ensure that all of the [prerequisites for building a Tauri application](https://tauri.app/v1/guides/getting-started/prerequisites) are satisfied to build OpenDeck (this includes the Tauri CLI from `cargo install tauri-cli`). On GNU+Linux, you'll also need `libudev` installed for your distribution. Then, ensure that the required frontend dependencies are installed with `npm i(nstall)`. You can then use `cargo tauri dev` and `cargo tauri build` to work with OpenDeck.

When submitting a pull request, ensure that all of your Rust code has been formatted using `cargo fmt`, `cargo clippy` returns no violations, and modified Svelte code sticks to the existing style used as far as possible. Feel free to reach out on the support channels above for guidance when contributing!
When submitting a pull request, ensure that all of your Rust code has been formatted using `cargo fmt`, `cargo clippy` returns no violations, `npm run check` returns no violations, and modified Svelte code sticks to the existing style used as far as possible. Feel free to reach out on the support channels above for guidance when contributing!
324 changes: 162 additions & 162 deletions package-lock.json

Large diffs are not rendered by default.

19 changes: 9 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,29 +1,28 @@
{
"name": "opendeck",
"version": "2.0.0",
"description": "A cross-platform desktop application for ProntoKey and Stream Deck.",
"description": "OpenDeck is a cross-platform desktop application that provides functionality for stream controller devices.",
"author": "ninjadev64",
"license": "BSD-3-Clause",
"repository": "https://github.com/ninjadev64/OpenDeck",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch"
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json"
},
"devDependencies": {
"@sveltejs/adapter-static": "^3.0.2",
"@sveltejs/kit": "^2.5.18",
"@sveltejs/kit": "^2.5.20",
"@sveltejs/vite-plugin-svelte": "^3.1.1",
"autoprefixer": "^10.4.19",
"postcss": "^8.4.39",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.41",
"svelte": "^4.2.18",
"svelte-check": "^3.8.4",
"tailwindcss": "^3.4.4",
"svelte-check": "^3.8.5",
"tailwindcss": "^3.4.7",
"tslib": "^2.6.3",
"typescript": "^5.5.3",
"vite": "^5.3.3"
"typescript": "^5.5.4",
"vite": "^5.3.5"
},
"type": "module",
"dependencies": {
Expand Down
Loading

0 comments on commit add7c74

Please sign in to comment.