您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

package.json 1.7KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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",
  35. "build": "mkdir -p build/dist && node esbuild.mjs && node esbuild.mjs --minify",
  36. "build-types": "mkdir -p build/types && tsc --emitDeclarationOnly --declaration --declarationDir build/types",
  37. "build-bundle-of-types": "mkdir -p build/dist && tsc --emitDeclarationOnly --isolatedModules false --declaration --outFile build/dist/encantar.d.ts",
  38. "build-plugins": "mkdir -p build/plugins && for f in $(find plugins/ -name *.js); do esbuild --minify < $f > build/${f%.*}.min.js; done",
  39. "update": "npm update speedy-vision",
  40. "deploy": "mkdocs gh-deploy",
  41. "docs": "mkdocs serve",
  42. "clean": "rm -rf build/",
  43. "test": "echo \"Error: no test specified\" && exit 1"
  44. },
  45. "dependencies": {
  46. "speedy-vision": "github:alemart/speedy-vision#af1a64017ea1476fdac1adbbba4337732e5bfefb"
  47. },
  48. "devDependencies": {
  49. "esbuild": "0.24.2",
  50. "typescript": "^4.9.5"
  51. },
  52. "config": {}
  53. }