package.json 850 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "spookonomics",
  3. "version": "1.0.0",
  4. "description": "A threejs potion brewing game",
  5. "main": "index.js",
  6. "type": "module",
  7. "scripts": {
  8. "editor": "vite --config editor-vite.config.js",
  9. "start": "vite",
  10. "build": "vite build",
  11. "eom-copy": "bash ./bin/eom-copy.sh"
  12. },
  13. "keywords": [
  14. "jupiter",
  15. "arcade"
  16. ],
  17. "author": "Justin Gilman <eyeofmidas@gmail.com>",
  18. "dependencies": {
  19. "@dimforge/rapier3d": "^0.11.2",
  20. "gsap": "^3.12.5",
  21. "howler": "^2.2.4",
  22. "seedrandom": "^3.0.5",
  23. "spring-easing": "^2.3.3",
  24. "three": "^0.164.1"
  25. },
  26. "devDependencies": {
  27. "lil-gui": "^0.19.2",
  28. "vite": "^5.2.11",
  29. "vite-plugin-glsl": "^1.3.0",
  30. "vite-plugin-wasm": "^3.3.0",
  31. "vite-plugin-top-level-await": "^1.4.1"
  32. },
  33. "optionalDependencies": {
  34. "fsevents": "^2.0.7"
  35. }
  36. }