-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "react-keyboard-visualizer",
"description": "Audio Visualizer for Razer Chroma Keyboards",
"version": "0.0.1",
"author": {
"name": "Joseph",
"email": "contact@icjoseph.com",
"url": "https://icjoseph.com"
},
"private": true,
"scripts": {
"start": "node_modules/.bin/babel-node src/index.js",
"build": "node_modules/.bin/babel index.js -d bin/",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"build-windows": "webpack -p",
"launchui-pack": "launchui-packager --icon assets/favicon.ico --out rel/ --overwrite KeyBoardAudioVisualizer 1.0.1 build/index.js",
"package": "npm run build-windows && yarn launchui-pack "
},
"dependencies": {
"babel-core": "^6.26.3",
"color-spectrum": "^1.1.3",
"fourier-transform": "^1.1.2",
"decibels": "^2.0.0",
"proton-native": "latest",
"webpack": "^4.12.0"
},
"devDependencies": {
"electron-builder": "latest",
"babel-cli": "latest",
"babel-loader": "^7.1.4",
"babel-preset-env": "latest",
"babel-preset-stage-0": "latest",
"babel-preset-react": "latest",
"launchui-packager": "^0.1.1",
"webpack-cli": "^3.1.2"
},
"build": {
"protonNodeVersion": "current",
"mac": {
"identity": null
}
}
}