threepipe
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

package.json 1.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "@threepipe/plugins-extra-importers",
  3. "description": "Extra Threepipe plugins for importing several file types.",
  4. "version": "0.2.0",
  5. "devDependencies": {
  6. },
  7. "dependencies": {
  8. "threepipe": "file:./../../src/"
  9. },
  10. "clean-package": {
  11. "remove": [
  12. "clean-package",
  13. "scripts",
  14. "devDependencies",
  15. "//",
  16. "markdown-to-html"
  17. ],
  18. "replace": {
  19. "dependencies": {},
  20. "peerDependencies": {
  21. "threepipe": "^0.0.13"
  22. }
  23. }
  24. },
  25. "type": "module",
  26. "main": "dist/index.mjs",
  27. "module": "dist/index.mjs",
  28. "types": "dist/index.d.ts",
  29. "files": [
  30. "dist",
  31. "src"
  32. ],
  33. "scripts": {
  34. "new:pack": "npm run prepare && clean-package && npm pack && clean-package restore",
  35. "new:publish": "npm run prepare && clean-package && npm publish --access public && clean-package restore",
  36. "prepare": "npm run build && npm run docs",
  37. "build": "rimraf dist && vite build",
  38. "dev": "NODE_ENV=development vite build --watch",
  39. "docs": "rimraf docs && npx typedoc"
  40. },
  41. "author": "repalash <palash@shaders.app>",
  42. "license": "Apache-2.0",
  43. "keywords": [
  44. "three",
  45. "three.js",
  46. "threepipe",
  47. "tweakpane",
  48. "editor",
  49. "plugin"
  50. ],
  51. "bugs": {
  52. "url": "https://github.com/repalash/threepipe/issues"
  53. },
  54. "homepage": "https://github.com/repalash/threepipe#readme",
  55. "repository": {
  56. "type": "git",
  57. "url": "git://github.com/repalash/threepipe.git",
  58. "directory": "plugins/extra-importers"
  59. }
  60. }