-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.54 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
53
54
55
56
{
"name": "@ain1084/audio-worklet-stream",
"version": "2.0.1",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src",
"LICENSE",
"README.md"
],
"description": "A library for handling audio output stream processing using AudioWorklet in the browser. It provides functionalities for real-time audio output processing with customizable buffer management, ideal for developers working on web-based audio applications.",
"keywords": [
"audio",
"stream",
"worklet",
"processor",
"real-time",
"web-audio",
"audio processing",
"ring buffer",
"audio context"
],
"author": "Seiji Ainoguchi <seiji.ainoguchi@gmail.com>",
"license": "(MIT OR Apache-2.0)",
"repository": {
"type": "git",
"url": "https://github.com/ain1084/audio-worklet-stream.git"
},
"bugs": {
"url": "https://github.com/ain1084/audio-worklet-stream/issues"
},
"homepage": "https://ain1084.github.io/audio-worklet-stream/",
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"lint": "eslint .",
"prepublishOnly": "npm run build",
"docs": "typedoc"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^2.10.1",
"@types/audioworklet": "^0.0.64",
"@types/node": "^22.9.0",
"@typescript-eslint/parser": "^8.13.0",
"eslint": "^9.14.0",
"globals": "^15.12.0",
"typedoc": "^0.26.11",
"typescript": "^5.6.3",
"typescript-eslint": "^8.13.0",
"vite": "^5.4.10"
},
"dependencies": {
"@ain1084/audio-frame-buffer": "^0.2.0"
}
}