threepipe
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

package.json 2.3KB

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