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

package.json 1.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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",
  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. "new:pack": "npm run prepare && clean-package && npm pack && clean-package restore",
  37. "new:publish": "npm run prepare && clean-package && npm publish --access public && clean-package restore",
  38. "prepare": "npm run build",
  39. "build": "rimraf dist && NODE_ENV=production rollup -c",
  40. "dev": "rollup -c -w"
  41. },
  42. "author": "repalash <palash@shaders.app>",
  43. "license": "Apache-2.0",
  44. "keywords": [
  45. "three",
  46. "three.js",
  47. "threepipe",
  48. "tweakpane",
  49. "editor",
  50. "plugin"
  51. ],
  52. "bugs": {
  53. "url": "https://github.com/repalash/threepipe/issues"
  54. },
  55. "homepage": "https://github.com/repalash/threepipe#readme",
  56. "repository": {
  57. "type": "git",
  58. "url": "git://github.com/repalash/threepipe.git"
  59. }
  60. }