threepipe
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "@threepipe/plugin-gaussian-splatting",
  3. "description": "Gaussian Splatting for Threepipe",
  4. "version": "0.1.0",
  5. "devDependencies": {
  6. "comlink": "^4.4.1",
  7. "@types/emscripten": "^1.39.10"
  8. },
  9. "dependencies": {
  10. "threepipe": "file:./../../src/"
  11. },
  12. "clean-package": {
  13. "remove": [
  14. "clean-package",
  15. "scripts",
  16. "devDependencies",
  17. "//",
  18. "markdown-to-html"
  19. ],
  20. "replace": {
  21. "dependencies": {
  22. "threepipe": "^0.0.23"
  23. }
  24. }
  25. },
  26. "type": "module",
  27. "main": "dist/index.js",
  28. "module": "dist/index.mjs",
  29. "types": "dist/index.d.ts",
  30. "files": [
  31. "dist",
  32. "src"
  33. ],
  34. "scripts": {
  35. "new:pack": "npm run prepare && clean-package && npm pack && clean-package restore",
  36. "new:publish": "npm run prepare && clean-package && npm publish --access public && clean-package restore",
  37. "prepare": "npm run build",
  38. "build": "rimraf dist && vite build",
  39. "dev": "NODE_ENV=development vite build --watch",
  40. "docs": "rimraf docs && npx typedoc"
  41. },
  42. "author": "repalash <palash@shaders.app>",
  43. "license": "Apache-2.0",
  44. "keywords": [
  45. "three",
  46. "three.js",
  47. "threepipe",
  48. "gaussian-splatting",
  49. "ml",
  50. "ai"
  51. ],
  52. "bugs": {
  53. "url": "https://github.com/repalash/threepipe/issues"
  54. },
  55. "homepage": "https://github.com/repalash/threepipe#readme",
  56. "repository": {
  57. "type": "git",
  58. "url": "git://github.com/repalash/threepipe.git"
  59. }
  60. }