-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1 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
{
"name": "webaudio-stream-player",
"version": "1.2.1",
"description": "A framework for creating an audio stream player using WebAudio. Both AudioWorkletNote and ScriptProcessorNode are supported.",
"type": "module",
"main": "dist/index.js",
"files": [
"CHANGELOG.md",
"dist",
"LICENSE.md",
"package.json",
"README.md"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "npm run clean && npm run build",
"clean": "rimraf dist",
"build": "tsc",
"build:watch": "tsc -w"
},
"author": "Mitsutaka Okazaki",
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"prettier": "^2.8.7",
"rimraf": "^4.4.1",
"typedoc": "^0.23.28",
"typescript": "^4.9.0"
},
"repository": {
"type": "git",
"url": "https://github.com/digital-sound-antiques/webaudio-stream-player"
}
}