-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.7 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.7 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
{
"name": "encode-audio",
"version": "1.5.1",
"description": "Encode audio data in node or browser",
"type": "module",
"sideEffects": false,
"main": "audio-encode.js",
"types": "audio-encode.d.ts",
"exports": {
".": {
"browser": "./audio-encode.js",
"node": "./audio-encode.js",
"default": "./audio-encode.js"
},
"./stream": "./stream.js",
"./meta": "./meta.js",
"./package.json": "./package.json"
},
"files": [
"audio-encode.js",
"audio-encode.d.ts",
"stream.js",
"stream.d.ts",
"meta.js",
"LICENSE"
],
"workspaces": [
"packages/*"
],
"scripts": {
"test": "node test.js",
"test:all": "npm test --workspaces && npm test",
"publish:all": "npm publish --workspaces && npm publish",
"build": "npm run build --workspaces --if-present"
},
"repository": {
"type": "git",
"url": "git+https://github.com/audiojs/audio-encode.git"
},
"keywords": [
"audio",
"encode",
"encoder",
"codec",
"wav",
"mp3",
"ogg",
"vorbis",
"opus",
"flac",
"aiff",
"pcm",
"streaming"
],
"author": "ΔY <dfcreative@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/audiojs/audio-encode/issues"
},
"homepage": "https://github.com/audiojs/audio-encode#readme",
"dependencies": {
"@audio/encode-aiff": "^1.0.0",
"@audio/encode-flac": "^1.1.0",
"@audio/encode-mp3": "^1.1.0",
"@audio/encode-ogg": "^1.0.0",
"@audio/encode-opus": "^1.0.0",
"@audio/encode-wav": "^1.1.0"
},
"devDependencies": {
"audio-buffer": "^7.3.0",
"audio-decode": "^4.0.0",
"audio-lena": "^3.0.0",
"esbuild": "^0.28.0",
"tst": "^9.2.2"
}
}