mirror of
https://github.com/captbaritone/webamp
synced 2024-11-23 00:34:42 +00:00
a053818c5e
* Revert "Don't re-center windows when loading from serialized state" This reverts commitd778c03f61
. * Revert "Clean up comment" This reverts commit8253093a2b
. * Revert "Fix spelling of IndexedDB" This reverts commitb34d90e998
. * Revert "Add a few more generic assertions about serialized state" This reverts commita8267581d0
. * Revert "Refactor debounce and throttle" This reverts commit6ecc5142b5
. * Revert "Double check that the serialized state we generated equals the one we have saved" This reverts commit82a81bf584
. * Revert "Add many tests for serialization" This reverts commit55603346c2
. * Revert "Split serialized state types into their own file" This reverts commit4c9c5b99d3
. * Revert "Refactor how we manage window positions" This reverts commitd6a1baece3
. * Revert "Fix export" This reverts commit462cf4b42d
. * Revert "Clean up selectors file" This reverts commitcdfa99383a
. * Revert "Mark serialization methods priviate for now" This reverts commitfc79c77451
. * Revert "Add types for WindowManager" This reverts commit0a7f258b64
. * Revert "Export Box" This reverts commite94cdef100
. * Revert "Use browserSize from state. Make it non-optional" This reverts commit53481ba892
. * Revert "Add back resetWindowLayout" This reverts commit35f4004caa
. * Revert "Begin tracking window size" This reverts commit96ed2b353c
. * Revert "Use namespaced Utils for webamplazy" This reverts commit949a2bc771
. * Revert "Use namespaced Utils" This reverts commit3049350701
. * Revert "Add initial approach of recovering from bad window positions" This reverts commit1791babf1a
. * Revert "Move centerWindowsIfNeeded to an action creatorThis forces us to type it, as a nice side benefit" This reverts commit40e31f0577
. * Revert "Make state serialization opt-in (for now)" This reverts commitbef421ebed
. * Revert "Persist focus, and handle bad focus" This reverts commit3f1861d4f8
. * Revert "Handle the case where `positions` might be an empty object to begin with" This reverts commitf8544ed126
. * Revert "Don't center windows when restoring from serialized state" This reverts commitca1cfe3dc6
. * Revert "Center windows correctly, even if the windows don't start at 0,0" This reverts commit777d482e73
. * Revert "Make hotkeys a function not a singleton class that has side effects when you construct it" This reverts commit87ca43ba45
. * Revert "Move global file input out of NPM module" This reverts commit9f726899c7
. * Revert "Don't exclude generic windows" This reverts commit245dd166a2
. * Revert "Serialize window position as well" This reverts commitb71e09284e
. * Revert "Persist window states (exept position)" This reverts commit690f650e4c
. * Revert "Serialize media state, and apply equalizer state to on deserialize" This reverts commit94e105b104
. * Revert "Add a flag to clear IndexDB state" This reverts commit364ddb7411
. * Revert "Serialize state to indexdb" This reverts commit60429b280a
.
139 lines
5.0 KiB
JSON
139 lines
5.0 KiB
JSON
{
|
|
"name": "webamp",
|
|
"version": "1.2.0",
|
|
"description": "Winamp 2 implemented in HTML5 and JavaScript",
|
|
"main": "built/webamp.bundle.js",
|
|
"files": [
|
|
"built/webamp.bundle.js",
|
|
"built/webamp.bundle.min.js",
|
|
"built/webamp-lazy.bundle.js",
|
|
"built/webamp-lazy.bundle.min.js"
|
|
],
|
|
"scripts": {
|
|
"lint": "eslint .",
|
|
"type-check": "tsc",
|
|
"build": "webpack --config=config/webpack.prod.js",
|
|
"build-library": "webpack --config=config/webpack.library.js",
|
|
"analyze": "webpack --config=config/webpack.bundle-analyzer.js",
|
|
"prepublishOnly": "npm run build-library",
|
|
"serve": "http-server ./built",
|
|
"start": "webpack-dev-server --config=config/webpack.dev.js",
|
|
"stats": "webpack --config=config/webpack.prod.js --json > stats.json",
|
|
"stats-library": "webpack --config=config/webpack.library.js --json > stats.json",
|
|
"weight": "npm run build-library > /dev/null && gzip-size built/webamp.bundle.min.js",
|
|
"test": "jest --projects config/jest.unit.js config/jest.eslint.js",
|
|
"travis-tests": "npm run test && npm run type-check && npm run build && npm run build-library",
|
|
"tdd": "jest --projects config/jest.unit.js --watch",
|
|
"format": "prettier --write experiments/**/*.js js/**/*.js js/**/*.ts **/*.d.ts css/**/*.css !css/**/*.min.css",
|
|
"integration-tests": "npm run build -- --display=errors-only && jest --projects config/jest.integration.js",
|
|
"build-skin": "rm skins/base-2.91.wsz && cd skins/base-2.91 && zip -x .* -x 'Skining Updates.txt' -r ../base-2.91.wsz .",
|
|
"build-skin-png": "rm skins/base-2.91-png.wsz && cd skins/base-2.91-png && zip -x .* -x 'Skining Updates.txt' -r ../base-2.91-png.wsz .",
|
|
"compile-skin": "node scripts/compileSkin.js > css/base-skin.css",
|
|
"skin-info": "unzip -vl skins/base-2.91.wsz"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/captbaritone/webamp.git"
|
|
},
|
|
"keywords": [
|
|
"Winamp",
|
|
"HTML5",
|
|
"audio",
|
|
"web-audio-api"
|
|
],
|
|
"author": "Jordan Eldredge <jordan@jordaneldredge.com>",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/captbaritone/webamp/issues"
|
|
},
|
|
"homepage": "https://github.com/captbaritone/webamp/",
|
|
"devDependencies": {
|
|
"@babel/core": "^7.0.0",
|
|
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
|
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
|
|
"@babel/plugin-transform-modules-commonjs": "^7.0.0",
|
|
"@babel/plugin-transform-runtime": "^7.0.0",
|
|
"@babel/polyfill": "^7.0.0",
|
|
"@babel/preset-env": "^7.0.0",
|
|
"@babel/preset-react": "^7.0.0",
|
|
"@babel/preset-typescript": "^7.0.0",
|
|
"@babel/runtime": "^7.0.0",
|
|
"@types/classnames": "^2.2.6",
|
|
"@types/invariant": "^2.2.29",
|
|
"@types/jest": "^23.3.2",
|
|
"@types/react": "^16.4.14",
|
|
"@types/react-dom": "^16.0.7",
|
|
"@types/react-redux": "^6.0.8",
|
|
"@types/webaudioapi": "^0.0.27",
|
|
"babel-core": "7.0.0-bridge.0",
|
|
"babel-eslint": "^9.0.0-beta.3",
|
|
"babel-jest": "^23.4.2",
|
|
"babel-loader": "^8.0.0-beta.6",
|
|
"babel-plugin-remove-webpack": "^1.1.0",
|
|
"butterchurn": "^2.4.10",
|
|
"butterchurn-presets": "^2.4.7",
|
|
"canvas-mock": "0.0.0",
|
|
"cardinal-spline-js": "^2.3.9",
|
|
"classnames": "^2.2.5",
|
|
"copy-webpack-plugin": "^4.5.1",
|
|
"css-loader": "^0.28.4",
|
|
"eslint": "4.16.0",
|
|
"eslint-config-prettier": "^2.3.0",
|
|
"eslint-plugin-import": "^2.7.0",
|
|
"eslint-plugin-no-constructor-bind": "^1.2.1",
|
|
"eslint-plugin-prettier": "^2.2.0",
|
|
"eslint-plugin-react": "^7.7.0",
|
|
"file-loader": "^1.1.5",
|
|
"git-revision-webpack-plugin": "^2.5.1",
|
|
"gzip-size-cli": "^2.0.0",
|
|
"html-webpack-inline-svg-plugin": "^1.2.4",
|
|
"html-webpack-plugin": "^3.0.6",
|
|
"http-server": "^0.11.1",
|
|
"invariant": "^2.2.3",
|
|
"jest": "^23.5.0",
|
|
"jest-image-snapshot": "^2.4.1",
|
|
"jest-mock-random": "^1.0.2",
|
|
"jest-puppeteer": "^3.0.1",
|
|
"jest-runner-eslint": "^0.4.0",
|
|
"jsmediatags": "^3.8.1",
|
|
"jszip": "^3.1.3",
|
|
"milkdrop-preset-converter-aws": "^0.1.0",
|
|
"prettier": "^1.14.2",
|
|
"prop-types": "^15.5.10",
|
|
"puppeteer": "^1.4.0",
|
|
"raven-for-redux": "^1.3.1",
|
|
"raven-js": "^3.19.1",
|
|
"rc-slider": "^8.1.5",
|
|
"react": "^16.5.0",
|
|
"react-dom": "^16.5.0",
|
|
"react-redux": "^5.0.7",
|
|
"react-test-renderer": "^16.5.0",
|
|
"redux": "^4.0.0",
|
|
"redux-devtools-extension": "^2.13.2",
|
|
"redux-thunk": "^2.1.0",
|
|
"reselect": "^3.0.1",
|
|
"screenfull": "^3.3.2",
|
|
"style-loader": "^0.19.1",
|
|
"tinyqueue": "^1.2.3",
|
|
"travis-weigh-in": "^1.0.2",
|
|
"typescript": "^3.0.1",
|
|
"uglifyjs-webpack-plugin": "^1.2.5",
|
|
"url-loader": "^0.6.2",
|
|
"webpack": "^3.6.0",
|
|
"webpack-bundle-analyzer": "^2.13.1",
|
|
"webpack-dev-server": "^2.7.1",
|
|
"webpack-merge": "^4.1.2",
|
|
"webpack-pwa-manifest": "^3.6.2",
|
|
"winamp-eqf": "^1.0.0",
|
|
"workbox-webpack-plugin": "^3.0.0"
|
|
},
|
|
"jest": {
|
|
"globalSetup": "jest-environment-puppeteer/setup",
|
|
"globalTeardown": "jest-environment-puppeteer/teardown",
|
|
"projects": [
|
|
"config/jest.*.js"
|
|
]
|
|
},
|
|
"prettier": {}
|
|
}
|