-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
50 lines (50 loc) · 1.27 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
{
"name": "@tonejs/ui",
"version": "0.1.0",
"description": "Web Component interfaces for Tone.js",
"main": "build/tonejs-ui.js",
"module": "build/esm/index.js",
"types": "build/esm/index.d.ts",
"scripts": {
"build": "webpack -p --env.output=./build",
"watch": "webpack --watch --mode=development --env.output=./build",
"increment": "node scripts/increment_version.js",
"copy": "cp ./build/{tone-ui.js,components.js} ../Tone.js/examples/js/"
},
"author": "Yotam Mann",
"license": "GPL-3.0",
"devDependencies": {
"css-loader": "^3.6.0",
"node-sass": "^4.14.1",
"sass-loader": "^9.0.2",
"style-loader": "^1.2.1",
"to-string-loader": "^1.1.6",
"tone": "^14.7.28",
"ts-loader": "^6.2.1",
"typescript": "^3.9.7",
"webpack": "^4.41.2",
"webpack-cli": "^3.1.2",
"worker-loader": "^2.0.0"
},
"dependencies": {
"@material/mwc-icon": "^0.17.2",
"@material/mwc-slider": "^0.17.2",
"@tonejs/plot": "0.0.35",
"@types/node": "^14.0.23",
"audiokeys": "^0.1.1",
"color": "^3.1.2",
"deep-equal": "^2.0.3",
"file-loader": "^6.0.0",
"lit-element": "^2.3.1",
"lit-html": "^1.2.1",
"monaco-editor": "^0.20.0",
"webmidi": "^2.3.0"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 4,
"semi": true,
"useTabs": true,
"singleQuote": false
}
}