選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

package.json 1.2KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "martins-js",
  3. "version": "0.1.2-wip",
  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/martins-js",
  7. "license": "AGPL-3.0-only",
  8. "repository": "github:alemart/martins-js",
  9. "funding": "https://github.com/sponsors/alemart",
  10. "keywords": [
  11. "augmented reality",
  12. "mixed reality",
  13. "webar",
  14. "webxr",
  15. "ar"
  16. ],
  17. "main": "dist/martins.js",
  18. "scripts": {
  19. "start": "webpack serve --mode development --env PORT=8000",
  20. "build-dev": "npm run update && npm run clean && webpack --mode development",
  21. "build": "npm run update && npm run clean && webpack --mode production && webpack --mode production --env minimize=1",
  22. "clean": "rm -rf dist/martins*.js",
  23. "update": "npm update speedy-vision",
  24. "test": "echo \"Error: no test specified\" && exit 1"
  25. },
  26. "dependencies": {
  27. "speedy-vision": "alemart/speedy-vision"
  28. },
  29. "devDependencies": {
  30. "ts-loader": "^9.2.6",
  31. "typescript": "^4.4.4",
  32. "webpack": "^5.64.0",
  33. "webpack-cli": "^4.9.1",
  34. "webpack-dev-server": "^4.5.0"
  35. },
  36. "config": {
  37. }
  38. }