-
Notifications
You must be signed in to change notification settings - Fork 121
/
package.json
52 lines (52 loc) · 1.55 KB
/
package.json
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
45
46
47
48
49
50
51
52
{
"name": "butterchurn",
"version": "3.0.0-beta.3",
"description": "Butterchurn is a WebGL implementation of the Milkdrop Visualizer",
"main": "dist/butterchurn.js",
"unpkg": "dist/butterchurn.js",
"files": [
"dist/butterchurn.js",
"dist/butterchurn.min.js",
"dist/isSupported.min.js"
],
"scripts": {
"build": "webpack --config config/webpack.config.js --env prod",
"dev": "webpack --config config/webpack.config.js --progress --colors --watch --env dev",
"dev-build": "webpack --config config/webpack.config.js --progress --colors --env dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jberg/butterchurn.git"
},
"keywords": [
"music visualization",
"visualizer",
"webgl",
"webaudio"
],
"author": "Jordan Berg <[email protected]>",
"license": "MIT",
"homepage": "https://butterchurnviz.com",
"dependencies": {
"@assemblyscript/loader": "^0.17.11",
"@babel/runtime": "^7.11.2",
"ecma-proposal-math-extensions": "0.0.2",
"eel-wasm": "^0.0.15"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"assemblyscript": "^0.17.11",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"eslint": "^7.9.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.1.2",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"yargs": "^16.0.3"
},
"browserslist": "supports audio-api and supports webgl2 and last 3 years"
}