-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 861 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 861 Bytes
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
{
"name": "@audio/decode-aiff",
"version": "1.1.1",
"description": "Decode AIFF/AIFF-C audio to PCM samples",
"type": "module",
"main": "decode-aiff.js",
"types": "decode-aiff.d.ts",
"exports": {
".": "./decode-aiff.js",
"./package.json": "./package.json"
},
"files": [
"decode-aiff.js",
"decode-aiff.d.ts",
"LICENSE"
],
"keywords": [
"aiff",
"aifc",
"audio",
"decode",
"decoder",
"pcm"
],
"publishConfig": {
"access": "public"
},
"license": "MIT",
"author": "audiojs",
"homepage": "https://github.com/audiojs/decode-aiff#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/audiojs/decode-aiff.git"
},
"engines": {
"node": ">=16"
},
"bugs": "https://github.com/audiojs/decode-aiff/issues",
"scripts": {
"test": "node test.js"
}
}