forked from sethalves/spatial-audio-room-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1.03 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
{
"name": "audio-room",
"version": "1.0.0-0",
"description": "",
"main": "./dist/hifi-audio.js",
"files": [
"dist"
],
"private": false,
"scripts": {
"install-audio-api": "npm install [email protected] --registry https://npm.highfidelity.com/ --no-save",
"install-local-audio-api": "npm install file:../hifi-web-audio-api --no-save",
"build": "rimraf ./dist && webpack --mode production",
"watch": "rimraf ./dist && webpack --mode development --watch --progress",
"serve": "rimraf ./dist && webpack serve --open --mode development",
"lint": "eslint ."
},
"dependencies": {
"@daily-co/daily-js": "^0.36.1",
"agora-rtc-sdk-ng": "^4.17.2",
"hifi-web-audio": "^1.0.8"
},
"devDependencies": {
"copy-webpack-plugin": "^11.0.0",
"eslint": "^8.36.0",
"rimraf": "^4.4.0",
"ts-loader": "^9.4.2",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.13.1"
}
}