-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
74 lines (74 loc) · 2.32 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
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "hifi-spatial-audio",
"version": "2.2.0-3",
"description": "The High Fidelity Audio Client Library allows developers to integrate High Fidelity's spatial audio technology into their projects.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"private": false,
"scripts": {
"build:node": "npm run clean && tsc --declaration true && npm pack",
"build": "echo \"No target defined. Did you mean 'npm run build:web' or 'npm run build:node' ?\" && exit 1",
"build:web": "npm run clean && webpack --env buildEnv=dev",
"build:web:dev": "npm run clean && webpack --env buildEnv=dev",
"build:web:prod": "npm run clean && webpack --env buildEnv=prod",
"clean": "node ./utilities/cleanDistDir.js",
"docs": "typedoc",
"docs:buildAndUpload": "npm run clean && typedoc && node ./utilities/uploadDocsToS3AndInvalidate.js",
"test": "jest",
"test:generateReport": "jest --reporters default jest-stare",
"publishNewRelease": "npm run clean && npm run docs:buildAndUpload && npm run build:node && npm publish && npm run build:web:prod"
},
"repository": {
"type": "git",
"url": "https://github.com/highfidelity/hifi-spatial-audio-js.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"author": "High Fidelity, Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/highfidelity/hifi-spatial-audio-js/issues"
},
"homepage": "https://highfidelity.com/",
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/pako": "^1.0.1",
"@types/puppeteer": "^5.4.3",
"aws-sdk": "^2.831.0",
"clean-webpack-plugin": "^3.0.0",
"jest": "^26.6.3",
"jest-stare": "^2.0.1",
"jose": "^3.11.0",
"minimist": "^1.2.5",
"node-fetch": "^2.6.1",
"puppeteer": "^9.0.0",
"ts-jest": "^26.4.4",
"ts-loader": "^8.0.14",
"typedoc": "^0.20.29",
"typescript": "^4.1.3",
"webpack": "^5.17.0",
"webpack-cli": "^4.4.0"
},
"dependencies": {
"esm": "^3.2.25",
"pako": "^2.0.3",
"uuid": "^8.3.2",
"wrtc": "^0.4.7",
"ws": "^7.4.2"
},
"keywords": [
"audio",
"spatial audio",
"3d"
],
"maintainers": [
"Zach Fox ([email protected])",
"Maia Hansen ([email protected])",
"Joy Scharmen ([email protected])"
]
}