-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
50 lines (50 loc) · 1.4 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
{
"name": "encantar-js",
"version": "0.4.0",
"description": "GPU-accelerated Augmented Reality for the web",
"author": "Alexandre Martins <alemartf@gmail.com> (https://github.com/alemart)",
"homepage": "https://github.com/alemart/encantar-js",
"license": "LGPL-3.0-or-later",
"repository": "github:alemart/encantar-js",
"funding": "https://github.com/sponsors/alemart",
"keywords": [
"augmented reality",
"mixed reality",
"virtual reality",
"ar",
"xr",
"vr",
"webar",
"webxr",
"webvr",
"webgl",
"webgl2",
"wasm",
"magic",
"aframe",
"babylonjs",
"threejs",
"3d"
],
"main": "dist/encantar.js",
"scripts": {
"start": "webpack serve --mode development --env PORT=8000 --env minimize=1",
"build-dev": "npm run update && npm run clean && webpack --mode development",
"build": "npm run update && npm run clean && webpack --mode production && webpack --mode production --env minimize=1",
"clean": "rm -rf dist/encantar*.js",
"update": "npm update speedy-vision",
"deploy": "mkdocs gh-deploy",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"speedy-vision": "github:alemart/speedy-vision#v0.9.1"
},
"devDependencies": {
"ts-loader": "^9.5.1",
"typescript": "^4.9.5",
"webpack": "^5.92.1",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.5.0"
},
"config": {}
}