threepipe
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

package.json 2.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. {
  2. "name": "@threepipe/plugin-tweakpane",
  3. "description": "Tweakpane UI Plugin for ThreePipe",
  4. "version": "0.4.0",
  5. "devDependencies": {
  6. "tweakpane-image-plugin": "https://github.com/repalash/tweakpane-image-plugin/releases/download/v1.1.404/package.tgz"
  7. },
  8. "dependencies": {
  9. "threepipe": "file:./../../src/",
  10. "uiconfig-tweakpane": "^0.0.8"
  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 && npm run docs",
  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. "directory": "plugins/tweakpane"
  46. },
  47. "clean-package": {
  48. "remove": [
  49. "clean-package",
  50. "scripts",
  51. "devDependencies",
  52. "//",
  53. "markdown-to-html"
  54. ],
  55. "replace": {
  56. "dependencies": {},
  57. "peerDependencies": {
  58. "threepipe": "^0.0.21"
  59. }
  60. }
  61. },
  62. "//": {
  63. "dependencies": {
  64. "tweakpane-image-plugin": "https://github.com/repalash/tweakpane-image-plugin/releases/download/v1.1.404/package.tgz",
  65. "uiconfig-tweakpane": "^0.0.8"
  66. },
  67. "local_dependencies": {
  68. "tweakpane-image-plugin": "file:./../tweakpane-image-plugin",
  69. "uiconfig-tweakpane": "^file:./../uiconfig-tweakpane"
  70. }
  71. }
  72. }