-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.69 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
{
"name": "@eliware/resampler",
"type": "module",
"version": "1.1.1",
"description": "A pure JavaScript, high-quality PCM audio resampler for Node.js. Converts s16le PCM between arbitrary sample rates and channel layouts (mono/stereo) with windowed-sinc filtering.",
"main": "index.cjs",
"module": "index.mjs",
"types": "index.d.ts",
"files": [
"index.mjs",
"index.cjs",
"index.d.ts",
"README.md",
"LICENSE"
],
"exports": {
".": {
"import": "./index.mjs",
"require": "./index.cjs",
"types": "./index.d.ts"
}
},
"scripts": {
"test": "npx --node-options=\"--experimental-vm-modules --no-warnings\" jest --detectOpenHandles --silent"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eliware/resampler.git"
},
"keywords": [
"resampler",
"pcm",
"audio",
"s16le",
"sample-rate",
"windowed-sinc",
"nodejs",
"stereo",
"mono",
"pure-js",
"audio-processing",
"volume-control"
],
"author": "Eli Sterling, eliware.org <eli@eliware.org>",
"license": "MIT",
"bugs": {
"url": "https://github.com/eliware/resampler/issues"
},
"homepage": "https://github.com/eliware/resampler#readme",
"devDependencies": {
"jest": "^30.0.5"
},
"jest": {
"testEnvironment": "node",
"testMatch": [
"**/?(*.)+(spec|test).[jt]s?(x)",
"**/?(*.)+(spec|test).mjs",
"**/?(*.)+(spec|test).cjs"
]
},
"dependencies": {
"@eliware/common": "^1.1.1"
}
}