-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
44 lines (44 loc) · 1012 Bytes
/
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
{
"name": "web-audio-oscillators",
"version": "2.0.0",
"description": "A collection of Web Audio API custom oscillators.",
"author": "Luke Horvat",
"license": "MIT",
"repository": "lukehorvat/web-audio-oscillators",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"prebuild": "rimraf dist",
"test": "webpack serve --mode development --config ./test/webpack.config.mjs"
},
"dependencies": {
"@mohayonao/wave-tables": "^0.2.0"
},
"devDependencies": {
"html-webpack-plugin": "^5.5.0",
"qwerty-hancock": "^0.10.0",
"rimraf": "^4.1.2",
"soundbank-reverb": "^1.1.2",
"ts-loader": "^9.4.1",
"typescript": "^5.1.6",
"webpack": "^5.75.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1"
},
"keywords": [
"web",
"audio",
"api",
"oscillators",
"oscillatornode",
"periodicwave",
"waveform",
"wavetable",
"fourier",
"music"
]
}