An easy-to-use platform for EEG experimentation in the classroom
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

updates to package.json

according to electron-builder, the metadata for the app comes from app/package.json so we could include the metadata contents there:
https://www.electron.build/tutorials/two-package-structure

+27 -6
+25 -2
app/package.json
··· 1 1 { 2 - "name": "BrainWaves", 2 + "name": "brainwaves", 3 3 "productName": "BrainWaves", 4 4 "version": "0.15.1", 5 - "description": "EEG Desktop Application", 5 + "description": "EEG Experiment Desktop Application", 6 6 "main": "./main.prod.js", 7 7 "type": "module", 8 8 "author": { ··· 10 10 "email": "dano@neurotechx.com", 11 11 "url": "https://github.com/makebrainwaves" 12 12 }, 13 + "contributors": [ 14 + { 15 + "name": "Teon L Brooks", 16 + "url": "https://teonbrooks.com" 17 + }, 18 + { 19 + "name": "Yury Shevchenko", 20 + "url": "https://yuryshevchenko.com/" 21 + } 22 + ], 13 23 "scripts": { 14 24 "electron-rebuild": "node -r ../internals/scripts/BabelRegister.js ../internals/scripts/ElectronRebuild.js", 15 25 "postinstall": "yarn electron-rebuild" 16 26 }, 17 27 "license": "MIT", 28 + "keywords": [ 29 + "eeg", 30 + "electron", 31 + "react", 32 + "redux", 33 + "redux-observable", 34 + "muse", 35 + "emotiv", 36 + "pyodide", 37 + "wasm", 38 + "lab.js" 39 + ], 40 + "homepage": "https://github.com/makebrainwaves/BrainWaves/", 18 41 "dependencies": { 19 42 "@neurosity/pipes": "^3.2.3", 20 43 "@babel/runtime": "7.10.2",
+2 -4
package.json
··· 1 1 { 2 2 "name": "brainwaves", 3 3 "productName": "BrainWaves", 4 - "version": "0.15.1", 5 4 "description": "EEG Experiment Desktop Application", 6 5 "scripts": { 7 6 "build": "concurrently \"yarn build-main\" \"yarn build-renderer\"", ··· 123 122 "contributors": [ 124 123 { 125 124 "name": "Teon L Brooks", 126 - "url": "https://teonian.com" 125 + "url": "https://teonbrooks.com" 127 126 }, 128 127 { 129 128 "name": "Yury Shevchenko", ··· 143 142 "wasm", 144 143 "lab.js" 145 144 ], 146 - "homepage": "https://wp.nyu.edu/brainwaves/", 145 + "homepage": "https://github.com/makebrainwaves/BrainWaves/", 147 146 "jest": { 148 147 "testURL": "http://localhost/", 149 148 "moduleNameMapper": { ··· 293 292 "electron-updater": "^4.3.1", 294 293 "hazardous": "^0.3.0", 295 294 "history": "^4.7.2", 296 - "kernelspecs": "^2.0.0", 297 295 "lab.js": "^21.0.0-rc3", 298 296 "lodash": "^4.17.15", 299 297 "lodash.clonedeep": "^4.5.0",