-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.29 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
{
"name": "@wonderlandengine/spatial-audio",
"version": "1.2.3",
"description": "Spatial audio components for Wonderland Engine",
"author": "Wonderland GmbH",
"license": "MIT",
"wonderlandengine": {},
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js"
},
"files": [
"dist/**/*.d.ts",
"dist/**/*.js"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run clean && npm run build",
"pretty": "prettier --config ./prettierrc.json --write \"example/js/*.js\" \"src/**/*.ts\" \"test/**/*.ts\"",
"clean": "rimraf dist"
},
"repository": {
"type": "git",
"url": "git+/~https://github.com/WonderlandEngine/wonderland-spatial-audio.git"
},
"keywords": [
"audio",
"webxr",
"wonderlandengine"
],
"bugs": {
"url": "/~https://github.com/WonderlandEngine/wonderland-spatial-audio/issues"
},
"homepage": "/~https://github.com/WonderlandEngine/wonderland-spatial-audio#readme",
"peerDependencies": {
"@wonderlandengine/api": "^1.0.0",
"@wonderlandengine/components": "^1.0.6",
"gl-matrix": "^3.4.3"
},
"devDependencies": {
"prettier": "3.0.0",
"rimraf": "^5.0.1",
"typedoc": "^0.26.7",
"typescript": "^5.1.3"
}
}