-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
42 lines (42 loc) · 1008 Bytes
/
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
{
"name": "three-omi",
"version": "0.1.5",
"license": "MIT",
"author": {
"name": "The Open Metaverse Interoperability Group",
"url": "https://omigroup.org"
},
"repository": {
"type": "git",
"url": "https://github.com/omigroup/three-omi"
},
"files": [
"dist"
],
"main": "./dist/three-omi.cjs.js",
"module": "./dist/three-omi.es.js",
"types": "./dist/three-omi.d.ts",
"exports": {
".": {
"import": "./dist/three-omi.es.js",
"require": "./dist/three-omi.cjs.js"
}
},
"scripts": {
"dev": "vite",
"build": "vite build",
"build:types": "tsc --declaration --noEmit false --emitDeclarationOnly --strict false --outDir ./dist",
"build:site": "vite build --mode site",
"preview-site": "vite preview"
},
"devDependencies": {
"@types/three": "^0.137.0",
"simple-dropzone": "^0.8.1",
"three": "^0.137.0",
"typescript": "^4.5.5",
"vite": "^2.4.4"
},
"peerDependencies": {
"three": ">= 0.127.0"
}
}