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 1.8KB

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