package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "potree",
  3. "private": true,
  4. "version": "1.8.0",
  5. "description": "WebGL point cloud viewer",
  6. "keywords": [
  7. "point",
  8. "cloud",
  9. "pointcloud",
  10. "octree",
  11. "entwine",
  12. "viewer",
  13. "threejs",
  14. "webgl",
  15. "browser",
  16. "tool"
  17. ],
  18. "main": "./build/potree/potree.js",
  19. "scripts": {
  20. "start": "gulp watch -c development",
  21. "build": "node main.js",
  22. "build-c": "gulp build pack -c production",
  23. "postinstall": "npm run build"
  24. },
  25. "dependencies": {
  26. "@babel/core": "^7.24.9",
  27. "@babel/plugin-transform-runtime": "^7.19.6",
  28. "@babel/preset-env": "^7.25.0",
  29. "@rollup/plugin-babel": "^6.0.4",
  30. "fs-extra": "^10.0.0",
  31. "gulp": "^4.0.2",
  32. "gulp-concat": "^2.6.1",
  33. "gulp-connect": "^5.7.0",
  34. "json5": "^2.1.3",
  35. "rollup": "^1.31.1",
  36. "rollup-plugin-babel": "^4.4.0",
  37. "rollup-plugin-uglify": "^6.0.4",
  38. "serve-static": "^1.15.0",
  39. "through": "~2.3.4",
  40. "webserver": "^5.0.1"
  41. },
  42. "author": "Markus Schütz",
  43. "license": "BSD-2-CLAUSE",
  44. "devDependencies": {
  45. "@babel/plugin-proposal-optional-chaining": "^7.21.0"
  46. }
  47. }