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.

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. {
  2. "name": "@threepipe/plugin-tweakpane",
  3. "description": "Tweakpane UI Plugin for ThreePipe",
  4. "version": "0.3.0",
  5. "devDependencies": {
  6. "tweakpane-image-plugin": "https://github.com/repalash/tweakpane-image-plugin/releases/download/v1.1.404/package.tgz",
  7. "uiconfig-tweakpane": "^0.0.8"
  8. },
  9. "dependencies": {
  10. "threepipe": "file:./../../src/"
  11. },
  12. "type": "module",
  13. "main": "dist/index.js",
  14. "module": "dist/index.mjs",
  15. "types": "dist/index.d.ts",
  16. "source": "src/index.ts",
  17. "files": [
  18. "dist",
  19. "src"
  20. ],
  21. "scripts": {
  22. "new:pack": "npm run prepare && clean-package && npm pack && clean-package restore",
  23. "new:publish": "npm run prepare && clean-package && npm publish --access public && clean-package restore",
  24. "prepare": "npm run build && npm run docs",
  25. "build": "rimraf dist && NODE_ENV=production rollup -c",
  26. "dev": "rollup -c -w",
  27. "docs": "rimraf docs && npx typedoc"
  28. },
  29. "author": "repalash <palash@shaders.app>",
  30. "license": "Apache-2.0",
  31. "keywords": [
  32. "three",
  33. "three.js",
  34. "tweakpane",
  35. "threepipe",
  36. "plugin"
  37. ],
  38. "bugs": {
  39. "url": "https://github.com/repalash/threepipe/issues"
  40. },
  41. "homepage": "https://github.com/repalash/threepipe#readme",
  42. "repository": {
  43. "type": "git",
  44. "url": "git://github.com/repalash/threepipe.git"
  45. },
  46. "clean-package": {
  47. "remove": [
  48. "clean-package",
  49. "scripts",
  50. "devDependencies",
  51. "//",
  52. "markdown-to-html"
  53. ],
  54. "replace": {
  55. "dependencies": {},
  56. "peerDependencies": {
  57. "threepipe": "^0.0.21"
  58. }
  59. }
  60. },
  61. "//": {
  62. "dependencies": {
  63. "tweakpane-image-plugin": "https://github.com/repalash/tweakpane-image-plugin/releases/download/v1.1.404/package.tgz",
  64. "uiconfig-tweakpane": "^0.0.8"
  65. },
  66. "local_dependencies": {
  67. "tweakpane-image-plugin": "file:./../tweakpane-image-plugin",
  68. "uiconfig-tweakpane": "^file:./../uiconfig-tweakpane"
  69. }
  70. }
  71. }