Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "encantar",
  3. "version": "0.4.4-dev",
  4. "description": "GPU-accelerated Augmented Reality framework 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. "types": "build/types/main.d.ts",
  32. "scripts": {
  33. "start": "node esbuild.mjs --minify --serve",
  34. "prebuild": "tsc --noEmit && npm run clean && bash -c 'mkdir -p build/{dist,types,plugins}'",
  35. "build": "node esbuild.mjs && node esbuild.mjs --minify",
  36. "build-types": "tsc --emitDeclarationOnly --declaration --declarationDir build/types",
  37. "plugins": "for f in $(find plugins/ -name *.js); do esbuild --minify < $f > build/${f%.*}.min.js; done",
  38. "update": "npm update speedy-vision",
  39. "deploy": "mkdocs gh-deploy",
  40. "docs": "mkdocs serve",
  41. "clean": "rm -rf build/",
  42. "test": "echo \"Error: no test specified\" && exit 1"
  43. },
  44. "dependencies": {
  45. "speedy-vision": "github:alemart/speedy-vision#af1a64017ea1476fdac1adbbba4337732e5bfefb"
  46. },
  47. "devDependencies": {
  48. "esbuild": "0.24.2",
  49. "typescript": "^4.9.5"
  50. },
  51. "config": {}
  52. }