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

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {
  2. "name": "@threepipe/plugin-tweakpane",
  3. "description": "Tweakpane UI Plugin for ThreePipe",
  4. "version": "0.1.2",
  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. "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. "threepipe": "^0.0.8"
  57. }
  58. }
  59. },
  60. "//": {
  61. "dependencies": {
  62. "tweakpane-image-plugin": "https://github.com/repalash/tweakpane-image-plugin/releases/download/v1.1.404/package.tgz",
  63. "uiconfig-tweakpane": "^0.0.4"
  64. },
  65. "local_dependencies": {
  66. "tweakpane-image-plugin": "file:./../tweakpane-image-plugin",
  67. "uiconfig-tweakpane": "^file:./../uiconfig-tweakpane"
  68. }
  69. }
  70. }