Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

package.json 1.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "name": "encantar",
  3. "version": "0.4.5-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. "scripts": {
  32. "prebuild": "tsc --noEmit && npm run clean",
  33. "build": "npm run build-encantar && npm run build-types && npm run build-plugins && npm run build-addons",
  34. "build-encantar": "mkdir -p build && node esbuild.mjs && node esbuild.mjs --minify",
  35. "build-types": "mkdir -p build && tsc --emitDeclarationOnly --isolatedModules false --declaration --outFile build/encantar.d.ts",
  36. "build-types-dir": "mkdir -p build/types && tsc --emitDeclarationOnly --declaration --declarationDir build/types",
  37. "build-plugins": "mkdir -p build/plugins && for f in $(find plugins/ -name *.js); do cp $f build/$f; esbuild --minify < $f > build/${f%.*}.min.js; done",
  38. "build-addons": "mkdir -p build/addons && for f in $(find addons/ -name *.js); do cp $f build/$f; esbuild --minify < $f > build/${f%.*}.min.js; done",
  39. "clean": "rm -rf build",
  40. "start": "node esbuild.mjs --minify --serve",
  41. "update": "npm update speedy-vision",
  42. "deploy": "mkdocs gh-deploy",
  43. "docs": "mkdocs serve",
  44. "test": "echo \"Error: no test specified\" && exit 1"
  45. },
  46. "dependencies": {
  47. "speedy-vision": "github:alemart/speedy-vision#v0.9.1"
  48. },
  49. "devDependencies": {
  50. "esbuild": "^0.25.5",
  51. "typescript": "^4.9.5"
  52. },
  53. "config": {}
  54. }