Files
LiveSplitOne/package.json
T
Christopher Serr 759910fcd5 Implement a Custom Color Picker (#1011)
The `react-color-picker` library has been unmaintained for quite a
while and it (among other libraries) has been holding us back from
upgrading React properly. I have written a color picker for our Druid
based desktop version before and if we are going to use Dioxus for the
desktop version, I would want to port the Druid version over anyway. And
considering Dioxus is so close to React, I did just that. I ported it to
Dioxus and then let Copilot port it to React, which worked on the very
first try.
2025-02-15 21:40:30 +01:00

57 lines
1.7 KiB
JSON

{
"name": "livesplit",
"main": "dist/bundle.js",
"type": "module",
"scripts": {
"build:core": "node buildCore.js",
"build:core:release": "node buildCore.js --release",
"build:core:deploy": "node buildCore.js --max-opt --nightly",
"lint": "eslint src",
"publish": "webpack --mode production",
"serve": "webpack serve",
"tauri:icons": "tauri icon src/assets/icon.png",
"tauri:build-html": "webpack --mode production --env TAURI=true",
"tauri:watch": "tauri dev",
"tauri:publish": "tauri build"
},
"dependencies": {
"idb": "^8.0.0",
"markdown-it": "^14.1.0",
"react": "^18.3.1",
"react-contextmenu": "^2.14.0",
"react-dom": "^18.3.1",
"react-resizable": "^3.0.4",
"react-sidebar": "^3.0.2",
"react-toastify": "11.0.3",
"react-toggle": "^4.1.3"
},
"devDependencies": {
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.13",
"@tauri-apps/cli": "^1.6.0",
"@types/markdown-it": "^14.1.2",
"@types/node": "22.13.1",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/react-resizable": "^3.0.3",
"@types/react-sidebar": "^3.0.2",
"@types/react-toggle": "^4.0.3",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "7.1.2",
"eslint": "^9.20.1",
"favicons-webpack-plugin": "^6.0.0",
"html-inline-script-webpack-plugin": "^3.1.0",
"html-webpack-plugin": "^5.6.0",
"react-refresh-typescript": "^2.0.7",
"sass": "^1.77.2",
"sass-loader": "16.0.4",
"style-loader": "^4.0.0",
"ts-loader": "^9.4.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.0",
"webpack": "^5.91.0",
"webpack-cli": "6.0.1",
"webpack-dev-server": "5.2.0",
"workbox-webpack-plugin": "^7.0.0"
}
}