Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

package.json 1.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "encantar",
  3. "version": "0.4.4-dev",
  4. "description": "GPU-accelerated Augmented Reality for the web",
  5. "author": "Alexandre Martins <alemartf@gmail.com> (https://github.com/alemart)",
  6. "homepage": "https://encantar.dev",
  7. "license": "LGPL-3.0-or-later",
  8. "repository": "github:alemart/encantar-js",
  9. "funding": "https://github.com/sponsors/alemart",
  10. "keywords": [
  11. "augmented reality",
  12. "mixed reality",
  13. "virtual reality",
  14. "ar",
  15. "xr",
  16. "vr",
  17. "webar",
  18. "webxr",
  19. "webvr",
  20. "webgl",
  21. "webgl2",
  22. "wasm",
  23. "magic",
  24. "aframe",
  25. "babylonjs",
  26. "threejs",
  27. "3d"
  28. ],
  29. "type": "module",
  30. "main": "src/main.ts",
  31. "scripts": {
  32. "start": "node esbuild.mjs --minify --serve",
  33. "prebuild": "tsc --noEmit && npm run clean",
  34. "build": "node esbuild.mjs && node esbuild.mjs --minify",
  35. "plugins": "for f in $(find plugins/ -name *.js); do esbuild --minify < $f > ${f%.*}.min.js; done",
  36. "update": "npm update speedy-vision",
  37. "deploy": "mkdocs gh-deploy",
  38. "docs": "mkdocs serve",
  39. "clean": "rm -rf www/dist/*.*",
  40. "test": "echo \"Error: no test specified\" && exit 1"
  41. },
  42. "dependencies": {
  43. "speedy-vision": "github:alemart/speedy-vision#v0.9.1"
  44. },
  45. "devDependencies": {
  46. "esbuild": "0.24.2",
  47. "typescript": "^4.9.5"
  48. },
  49. "config": {}
  50. }