speaker-calibration 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +72 -0
- package/dist/example/index.html +47 -0
- package/dist/example/listener.html +59 -0
- package/dist/example/server.js +50 -0
- package/dist/example/speaker.html +81 -0
- package/dist/example/styles.css +23 -0
- package/dist/main.js +1 -0
- package/dist/mlsGen.js +6814 -0
- package/dist/mlsGen.wasm +0 -0
- package/netlify.toml +27 -0
- package/package.json +61 -0
package/dist/mlsGen.wasm
ADDED
|
Binary file
|
package/netlify.toml
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# Settings in the [build] context are global and are applied to
|
|
2
|
+
# all contexts unless otherwise overridden by more specific contexts.
|
|
3
|
+
[build]
|
|
4
|
+
# Directory to change to before starting a build.
|
|
5
|
+
# This is where we will look for package.json/.nvmrc/etc.
|
|
6
|
+
# If not set, defaults to the root directory.
|
|
7
|
+
base = ""
|
|
8
|
+
|
|
9
|
+
# Directory that contains the deploy-ready HTML files and
|
|
10
|
+
# assets generated by the build. This is relative to the base
|
|
11
|
+
# directory if one has been set, or the root directory if
|
|
12
|
+
# a base has not been set.
|
|
13
|
+
|
|
14
|
+
publish = "dist/"
|
|
15
|
+
|
|
16
|
+
# Default build command.
|
|
17
|
+
command = "npm run build"
|
|
18
|
+
|
|
19
|
+
# Redirects and headers are GLOBAL for all builds – they do not
|
|
20
|
+
# get scoped to contexts no matter where you define them in the file.
|
|
21
|
+
# For context-specific rules, use _headers or _redirects files,
|
|
22
|
+
# which are PER-DEPLOY.
|
|
23
|
+
|
|
24
|
+
# A basic redirect rule
|
|
25
|
+
[[redirects]]
|
|
26
|
+
from = "/*"
|
|
27
|
+
to = "/example"
|
package/package.json
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "speaker-calibration",
|
|
3
|
+
"version": "1.0.2",
|
|
4
|
+
"description": "A P2P system that calibrates user's speakers with their mobile device",
|
|
5
|
+
"main": "dist/main.js",
|
|
6
|
+
"directories": {
|
|
7
|
+
"example": "example",
|
|
8
|
+
"bin": "dist"
|
|
9
|
+
},
|
|
10
|
+
"scripts": {
|
|
11
|
+
"build:prod": "webpack --mode production",
|
|
12
|
+
"build:wasm": "make rebuild",
|
|
13
|
+
"build:dev": "webpack --watch",
|
|
14
|
+
"serve:dev": "nodemon ./dist/example/server.js",
|
|
15
|
+
"lint": "eslint src --ext .js",
|
|
16
|
+
"lint:fix": "npm run lint -- --fix",
|
|
17
|
+
"format": "prettier --write \"**/*.{js,json,md,html,css}\"",
|
|
18
|
+
"build:doc": "jsdoc src -r -d ./doc"
|
|
19
|
+
},
|
|
20
|
+
"keywords": [],
|
|
21
|
+
"constributors": [
|
|
22
|
+
{
|
|
23
|
+
"name": "Augustin Burchell",
|
|
24
|
+
"email": "augustin.burchell@gmail.com",
|
|
25
|
+
"url": "https://aburchell.github.io/"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"name": "Hugo De Moraes",
|
|
29
|
+
"email": "demoraeshugo@gmail.com",
|
|
30
|
+
"url": "https://github.com/demoraeshugo"
|
|
31
|
+
}
|
|
32
|
+
],
|
|
33
|
+
"license": "MIT",
|
|
34
|
+
"repository": "git://github.com/EasyEyes/speaker-calibration.git",
|
|
35
|
+
"dependencies": {
|
|
36
|
+
"peerjs": "^1.3.2",
|
|
37
|
+
"qrcode": "^1.4.4",
|
|
38
|
+
"socket.io-client": "^4.4.1",
|
|
39
|
+
"uuid": "^8.3.2"
|
|
40
|
+
},
|
|
41
|
+
"devDependencies": {
|
|
42
|
+
"css-loader": "^5.2.6",
|
|
43
|
+
"eslint": "^8.10.0",
|
|
44
|
+
"eslint-config-airbnb-base": "^15.0.0",
|
|
45
|
+
"eslint-config-prettier": "^8.4.0",
|
|
46
|
+
"eslint-plugin-compat": "^4.0.2",
|
|
47
|
+
"eslint-plugin-import": "^2.25.4",
|
|
48
|
+
"eslint-plugin-no-floating-promise": "^1.0.2",
|
|
49
|
+
"express": "^4.17.1",
|
|
50
|
+
"jsdoc": "^3.6.10",
|
|
51
|
+
"nodemon": "^2.0.15",
|
|
52
|
+
"prettier": "^2.5.1",
|
|
53
|
+
"style-loader": "^2.0.0",
|
|
54
|
+
"webpack": "~5.69.1",
|
|
55
|
+
"webpack-bundle-analyzer": "^4.5.0",
|
|
56
|
+
"webpack-cli": "^4.9.2"
|
|
57
|
+
},
|
|
58
|
+
"browserslist": [
|
|
59
|
+
"defaults"
|
|
60
|
+
]
|
|
61
|
+
}
|