-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
57 lines (57 loc) · 1.64 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
{
"name": "@c-frame/aframe-gltf-model-plus",
"version": "1.0.0",
"description": "gltf-model-plus component to load glb file with hubs extensions.",
"main": "dist/gltf-model-plus.min.js",
"module": "index.js",
"exports": {
".": {
"import": "index.js",
"require": "dist/aframe-gltf-model-plus.min.js"
},
"./assets/*": "./src/assets/*",
"./components/*": "./src/components/*",
"./inflators/*": "./src/inflators/*"
},
"scripts": {
"dist": "cross-env NODE_ENV=production webpack",
"start": "cross-env NODE_ENV=development node server.js",
"lint": "eslint src",
"prettier": "prettier --write 'src/**/*.js' 'examples/**/*.html' '**/*.md'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/c-frame/aframe-gltf-model-plus.git"
},
"keywords": [
"aframe",
"aframe-component",
"aframe-vr",
"vr",
"webvr",
"webxr"
],
"author": "Vincent Fretin <vincent.fretin@gmail.com>",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/c-frame/aframe-gltf-model-plus/issues"
},
"homepage": "https://github.com/c-frame/aframe-gltf-model-plus#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"eslint-config-standard": "^17.1.0",
"networked-aframe": "^0.12.1",
"prettier": "3.2.5",
"typescript": "^5.3.3",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.2"
},
"dependencies": {
"three": "^0.168.0",
"lib-hubs": "github:Elettrotecnica/lib-hubs#elettrotecnica"
}
}