-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.88 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 1.88 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "audio-decode",
"version": "3.10.1",
"description": "Decode audio data in node or browser",
"type": "module",
"sideEffects": false,
"main": "audio-decode.js",
"types": "audio-decode.d.ts",
"exports": {
".": {
"browser": "./audio-decode.js",
"node": "./audio-decode.js",
"default": "./audio-decode.js"
},
"./stream": "./stream.js",
"./meta": "./meta.js",
"./package.json": "./package.json"
},
"workspaces": [
"packages/*"
],
"dependencies": {
"@audio/decode-aac": "^1.0.2",
"@audio/decode-aiff": "^1.0.0",
"@audio/decode-amr": "^1.0.0",
"@audio/decode-caf": "^1.0.0",
"@audio/decode-flac": "^1.1.0",
"@audio/decode-mp3": "^1.1.0",
"@audio/decode-opus": "^1.0.0",
"@audio/decode-qoa": "^1.0.0",
"@audio/decode-vorbis": "^1.0.0",
"@audio/decode-wav": "^1.2.0",
"@audio/decode-webm": "^1.0.0",
"@audio/decode-wma": "^1.0.0",
"audio-type": "^2.4.0"
},
"devDependencies": {
"audio-lena": "^3.0.0",
"base64-arraybuffer": "^1.0.2",
"esbuild": "^0.28.0",
"playwright": "^1.58.0",
"tst": "^9.2.2"
},
"scripts": {
"test": "node test.js",
"test:browser": "node test.browser.js",
"test:all": "node test.js && node test.browser.js",
"publish:all": "npm publish --workspaces && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/audiojs/audio-decode.git"
},
"keywords": [
"audio",
"decode",
"decoder",
"codec",
"mp3",
"wav",
"ogg",
"vorbis",
"opus",
"flac",
"aac",
"m4a",
"qoa",
"aiff",
"caf",
"webm",
"amr",
"wma",
"pcm",
"streaming"
],
"author": "ΔY <dfcreative@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/audiojs/audio-decode/issues"
},
"homepage": "https://github.com/audiojs/audio-decode#readme"
}