package.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "name": "3d-tiles-renderer",
  3. "version": "0.3.12",
  4. "description": "https://github.com/AnalyticalGraphicsInc/3d-tiles/tree/master/specification",
  5. "keywords": [
  6. "3d-tiles",
  7. "3dtiles",
  8. "graphics",
  9. "b3dm",
  10. "gltf",
  11. "threejs",
  12. "rendering",
  13. "geometry",
  14. "terrain",
  15. "cesium"
  16. ],
  17. "type": "module",
  18. "sideEffects": false,
  19. "main": "src/index.js",
  20. "module": "src/index.js",
  21. "files": [
  22. "src/*"
  23. ],
  24. "scripts": {
  25. "dev": "vite",
  26. "build": "vite build",
  27. "start": "concurrently \"parcel watch example/*.html --out-dir ./example/dev-bundle/ --public-url . --no-cache\" \"static-server\"",
  28. "build-examples": "parcel build --no-content-hash example/*.html --out-dir ./example/bundle/ --public-url . --no-cache",
  29. "lint": "eslint \"src/**/*.js\" \"test/**/*.js\" \"example/*.js\" && tsc -p tsconfig.json --noEmit",
  30. "test": "jest"
  31. },
  32. "repository": {
  33. "type": "git",
  34. "url": "git+https://github.com/NASA-AMMOS/3DTilesRendererJS.git"
  35. },
  36. "bugs": {
  37. "url": "https://github.com/NASA-AMMOS/3DTilesRendererJS/issues"
  38. },
  39. "homepage": "https://github.com/NASA-AMMOS/3DTilesRendererJS#readme",
  40. "author": "Garrett Johnson <garrett.kjohnson@gmail.com>",
  41. "license": "Apache-2.0",
  42. "devDependencies": {
  43. "@babel/core": "^7.13.8",
  44. "@babel/preset-env": "^7.13.8",
  45. "@types/three": ">=0.128.0",
  46. "babel-jest": "^25.5.1",
  47. "concurrently": "^5.3.0",
  48. "eslint": "^6.8.0",
  49. "eslint-config-mdcs": "^4.2.3",
  50. "eslint-plugin-jest": "^23.20.0",
  51. "jest": "^25.5.4",
  52. "jest-cli": "^25.5.4",
  53. "parcel-bundler": "^1.12.4",
  54. "static-server": "^2.2.1",
  55. "three": "^0.136.0",
  56. "typescript": "^3.9.9"
  57. },
  58. "peerDependencies": {
  59. "three": ">=0.123.0"
  60. },
  61. "dependencies": {
  62. "vite": "3.0.0"
  63. }
  64. }