mirror of
https://github.com/ApfelTeeSaft/LiveSplitOne.git
synced 2026-08-26 19:23:40 +00:00
This updates `livesplit-core` to the latest version. This mostly adds custom variable columns and allows for the timer to visualize the delta for the background. There's some performance improvements as well. Also we now build `livesplit-core` in debug mode by default when building locally. So compilation is a little bit faster and additional debug checks are active, such as integer overflows.
79 lines
2.3 KiB
JSON
79 lines
2.3 KiB
JSON
{
|
|
"name": "livesplit",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"main": "dist/bundle.js",
|
|
"scripts": {
|
|
"build": "webpack",
|
|
"build:core": "node buildCore.js",
|
|
"build:core:production": "node buildCore.js --production",
|
|
"lint": "tslint --project tsconfig.json",
|
|
"publish": "webpack --mode production",
|
|
"serve": "webpack serve",
|
|
"start": "webpack serve --open",
|
|
"start:electron": "webpack --electron && electron dist/index.html",
|
|
"test": "mocha --exit test/**/*.js"
|
|
},
|
|
"author": "",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"@types/commonmark": "^0.27.5",
|
|
"@types/react": "^16.0.0",
|
|
"@types/react-color": "^3.0.5",
|
|
"@types/react-dom": "^16.0.0",
|
|
"@types/react-resizable": "^1.7.4",
|
|
"@types/react-sidebar": "^3.0.2",
|
|
"@types/react-toastify": "^4.1.0",
|
|
"@types/react-toggle": "^4.0.3",
|
|
"commonmark": "^0.27.0",
|
|
"commonmark-react-renderer": "^4.3.5",
|
|
"fast-deep-equal": "^3.1.3",
|
|
"idb": "^7.0.0",
|
|
"react": "^16.0.0",
|
|
"react-color": "^2.19.3",
|
|
"react-contextmenu": "^2.14.0",
|
|
"react-dom": "^16.0.0",
|
|
"react-linkifier": "^4.0.0",
|
|
"react-resizable": "^3.0.4",
|
|
"react-sidebar": "^3.0.2",
|
|
"react-toastify": "^8.1.0",
|
|
"react-toggle": "^4.1.2",
|
|
"react-twemoji": "0.3.0",
|
|
"resize-observer": "^1.0.4"
|
|
},
|
|
"devDependencies": {
|
|
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.4",
|
|
"@types/node": "^17.0.5",
|
|
"chromedriver": "^96.0.0",
|
|
"clean-webpack-plugin": "^4.0.0",
|
|
"css-loader": "^6.2.0",
|
|
"favicons": "^6.2.2",
|
|
"favicons-webpack-plugin": "^5.0.2",
|
|
"file-loader": "^6.2.0",
|
|
"hex64": "^0.4.0",
|
|
"html-inline-script-webpack-plugin": "^2.0.3",
|
|
"html-webpack-plugin": "^5.5.0",
|
|
"http-server": "^14.0.0",
|
|
"imghash": "0.0.9",
|
|
"leven": "^3.1.0",
|
|
"mocha": "^9.1.3",
|
|
"moment": "^2.29.1",
|
|
"node-fetch": "^2.6.1",
|
|
"pixelmatch": "^5.2.1",
|
|
"pngjs": "^6.0.0",
|
|
"react-refresh-typescript": "^2.0.2",
|
|
"sass": "^1.45.2",
|
|
"sass-loader": "^12.3.0",
|
|
"selenium-webdriver": "^4.1.0",
|
|
"source-map-loader": "^3.0.0",
|
|
"style-loader": "^3.3.0",
|
|
"ts-loader": "^9.2.6",
|
|
"tslint": "^6.1.3",
|
|
"typescript": "^4.3.5",
|
|
"webpack": "^5.61.0",
|
|
"webpack-cli": "^4.8.0",
|
|
"webpack-dev-server": "^4.7.2",
|
|
"workbox-webpack-plugin": "^6.4.1"
|
|
}
|
|
}
|