-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.56 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
57
58
59
60
61
62
{
"name": "synaudio",
"version": "0.3.5",
"description": "Library that finds the synchronization point between two or more audio clips.",
"files": [
"index.js",
"index.d.ts",
"src/SynAudio.js"
],
"keywords": [
"wasm",
"simd",
"web worker",
"correlation",
"audio",
"synchronization"
],
"main": "index.js",
"types": "index.d.ts",
"sideEffects": false,
"scripts": {
"test": "node --experimental-vm-modules node_modules/.bin/jest --maxWorkers=100%",
"format": "prettier --write '**/*.js' --write '**/*.*json*' --write '**/*.*html*' --write '**/*.*ts*'",
"build": "node build.js $SIMD $SCALAR",
"deploy": "gh-pages -d demo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eshaz/synaudio.git"
},
"author": {
"name": "Ethan Halsall",
"email": "[email protected]"
},
"license": "LGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/eshaz/synaudio/issues"
},
"type": "module",
"homepage": "https://github.com/eshaz/synaudio#readme",
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/eshaz"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@types/jest": "^29.5.6",
"gh-pages": "^6.0.0",
"jest": "^29.7.0",
"mpg123-decoder": "^0.4.10",
"opus-decoder": "^0.7.3",
"prettier": "^3.0.3",
"rollup": "^4.1.4",
"synaudio": "file:./",
"terser": "^5.22.0"
},
"dependencies": {
"simple-yenc": "^1.0.2",
"@eshaz/web-worker": "1.2.1"
}
}