threepipe
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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