Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

package.json 1.2KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "encantar",
  3. "version": "0.4.1",
  4. "description": "GPU-accelerated Augmented Reality for the web",
  5. "author": "Alexandre Martins <alemartf@gmail.com> (https://github.com/alemart)",
  6. "homepage": "https://github.com/alemart/encantar-js",
  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 --dev --minify --serve",
  33. "build": "tsc --noEmit && npm run clean && node esbuild.mjs && node esbuild.mjs --minify",
  34. "clean": "rm -rf www/dist/*.*",
  35. "update": "npm update speedy-vision",
  36. "deploy": "npm run build && mkdocs gh-deploy",
  37. "test": "echo \"Error: no test specified\" && exit 1"
  38. },
  39. "dependencies": {
  40. "speedy-vision": "github:alemart/speedy-vision#v0.9.1"
  41. },
  42. "devDependencies": {
  43. "esbuild": "0.24.2",
  44. "typescript": "^4.9.5"
  45. },
  46. "config": {}
  47. }