threepipe
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "name": "@threepipe/plugin-tweakpane-editor",
  3. "description": "Tweakpane Editor Plugin for ThreePipe",
  4. "version": "0.2.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. "threepipe": "^0.0.18",
  24. "@threepipe/plugin-tweakpane": "^0.2.0"
  25. }
  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": "npm run prepare && clean-package && npm publish --access public && clean-package restore",
  39. "prepare": "npm run build",
  40. "build": "rimraf dist && NODE_ENV=production rollup -c",
  41. "dev": "rollup -c -w",
  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. "tweakpane",
  51. "editor",
  52. "plugin"
  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. }
  62. }