-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
50 lines (50 loc) · 1.31 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",
"version": "0.4.2-dev",
"description": "GPU-accelerated Augmented Reality for the web",
"author": "Alexandre Martins <[email protected]> (https://github.com/alemart)",
"homepage": "https://encantar.dev",
"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"
],
"type": "module",
"main": "src/main.ts",
"scripts": {
"start": "node esbuild.mjs --minify --serve",
"prebuild": "tsc --noEmit && npm run clean",
"build": "node esbuild.mjs && node esbuild.mjs --minify",
"plugins": "for f in $(find plugins/ -name *.js); do esbuild --minify < $f > ${f%.*}.min.js; done",
"update": "npm update speedy-vision",
"deploy": "mkdocs gh-deploy",
"docs": "mkdocs serve",
"clean": "rm -rf www/dist/*.*",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"speedy-vision": "github:alemart/speedy-vision#v0.9.1"
},
"devDependencies": {
"esbuild": "0.24.2",
"typescript": "^4.9.5"
},
"config": {}
}