-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.23 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
{
"name": "@wonderlandengine/community-components",
"version": "1.0.0",
"description": "Custom components created by the Wonderland Engine Community!",
"license": "MIT",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build:ts": "tsc",
"build:ts:watch": "tsc --watch",
"prepack": "npm run build:ts",
"pretty": "prettier --config ./prettierrc.json --write ./components"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WonderlandEngine/community-components.git"
},
"keywords": [
"webxr",
"wonderland",
"components"
],
"bugs": {
"url": "https://github.com/WonderlandEngine/community-components/issues"
},
"homepage": "https://github.com/WonderlandEngine/community-components#readme",
"wonderlandengine": {},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts"
],
"dependencies": {
"@types/webxr": "^0.5.0"
},
"peerDependencies": {
"@wonderlandengine/api": "^1.1.0",
"gl-matrix": "^3.3.0"
},
"devDependencies": {
"prettier": "^2.8.4",
"typescript": "^5.0.3"
}
}