threepipe
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

package.json 2.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. {
  2. "name": "@threepipe/plugin-tweakpane",
  3. "description": "Tweakpane UI Plugin for ThreePipe",
  4. "version": "0.1.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.4"
  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",
  25. "build": "rimraf dist && NODE_ENV=production rollup -c",
  26. "dev": "rollup -c -w"
  27. },
  28. "author": "repalash <palash@shaders.app>",
  29. "license": "Apache-2.0",
  30. "keywords": [
  31. "three",
  32. "three.js",
  33. "tweakpane",
  34. "threepipe",
  35. "plugin"
  36. ],
  37. "bugs": {
  38. "url": "https://github.com/repalash/threepipe/issues"
  39. },
  40. "homepage": "https://github.com/repalash/threepipe#readme",
  41. "repository": {
  42. "type": "git",
  43. "url": "git://github.com/repalash/threepipe.git"
  44. },
  45. "clean-package": {
  46. "remove": [
  47. "clean-package",
  48. "scripts",
  49. "devDependencies",
  50. "//",
  51. "markdown-to-html"
  52. ],
  53. "replace": {
  54. "dependencies": {
  55. "threepipe": "^0.0.8"
  56. }
  57. }
  58. },
  59. "//": {
  60. "dependencies": {
  61. "tweakpane-image-plugin": "https://github.com/repalash/tweakpane-image-plugin/releases/download/v1.1.404/package.tgz",
  62. "uiconfig-tweakpane": "^0.0.4"
  63. },
  64. "local_dependencies": {
  65. "tweakpane-image-plugin": "file:./../tweakpane-image-plugin",
  66. "uiconfig-tweakpane": "^file:./../uiconfig-tweakpane"
  67. }
  68. }
  69. }