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

package.json 1.9KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. "replace": {
  20. "dependencies": {},
  21. "peerDependencies": {
  22. "threepipe": "^0.0.18",
  23. "@threepipe/plugin-tweakpane": "^0.2.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 && npm run docs",
  39. "build": "rimraf dist && vite build",
  40. "dev": "NODE_ENV=development vite build --watch",
  41. "docs": "rimraf docs && npx typedoc"
  42. },
  43. "author": "repalash <palash@shaders.app>",
  44. "license": "Apache-2.0",
  45. "keywords": [
  46. "three",
  47. "three.js",
  48. "threepipe",
  49. "tweakpane",
  50. "editor",
  51. "plugin"
  52. ],
  53. "bugs": {
  54. "url": "https://github.com/repalash/threepipe/issues"
  55. },
  56. "homepage": "https://github.com/repalash/threepipe#readme",
  57. "repository": {
  58. "type": "git",
  59. "url": "git://github.com/repalash/threepipe.git",
  60. "directory": "plugins/tweakpane-editor"
  61. }
  62. }