-
-
Notifications
You must be signed in to change notification settings - Fork 101
/
package.json
45 lines (45 loc) · 1.01 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
{
"name": "@foobar404/wave",
"version": "2.0.5",
"description": "Audio visualizer library for javascript.",
"main": "dist/bundle.js",
"scripts": {
"start": "webpack --watch",
"build": "webpack",
"docs": "typedoc"
},
"keywords": [
"audio",
"visualizer",
"wave",
"sound",
"music",
"canvas"
],
"typings": "./dist/src/index.d.ts",
"types": "./dist/src/index.d.ts",
"author": "Austin Michaud",
"license": "MIT",
"files": [
"/dist"
],
"homepage": "https://foobar404.dev/wave.js/",
"repository": {
"type": "git",
"url": "https://github.com/foobar404/wave.js.git"
},
"bugs": {
"url": "https://github.com/foobar404/wave.js/issues"
},
"dependencies": {},
"devDependencies": {
"clean-webpack-plugin": "^4.0.0",
"ts-loader": "^9.2.8",
"typedoc": "^0.22.13",
"typedoc-plugin-inline-sources": "^1.0.1",
"typedoc-plugin-missing-exports": "^0.22.6",
"typescript": "^4.6.2",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.1"
}
}