threepipe
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

package.json 1.5KB

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