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 2.0KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {
  2. "name": "@threepipe/plugins-extra-importers",
  3. "description": "Extra Threepipe plugins for importing several file types.",
  4. "version": "0.2.3",
  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. "exports": {
  26. ".": {
  27. "types": "./dist/index.d.ts",
  28. "import": "./dist/index.js"
  29. },
  30. "./dist/": {
  31. "import": "./dist/",
  32. "require": "./dist/"
  33. }
  34. },
  35. "type": "module",
  36. "main": "dist/index.js",
  37. "module": "dist/index.js",
  38. "types": "dist/index.d.ts",
  39. "files": [
  40. "dist",
  41. "src"
  42. ],
  43. "scripts": {
  44. "new:pack": "npm run prepare && clean-package && npm pack && clean-package restore",
  45. "new:publish": "git diff --exit-code --name-only HEAD * && npm run prepare && clean-package && npm publish --access public && clean-package restore && git tag plugin-extra-importers-$npm_package_version",
  46. "prepare": "npm run build && npm run docs",
  47. "build": "rimraf dist && vite build",
  48. "dev": "NODE_ENV=development vite build --watch",
  49. "docs": "rimraf docs && npx typedoc"
  50. },
  51. "author": "repalash <palash@shaders.app>",
  52. "license": "Apache-2.0",
  53. "keywords": [
  54. "three",
  55. "three.js",
  56. "threepipe",
  57. "tweakpane",
  58. "editor",
  59. "plugin"
  60. ],
  61. "bugs": {
  62. "url": "https://github.com/repalash/threepipe/issues"
  63. },
  64. "homepage": "https://github.com/repalash/threepipe#readme",
  65. "repository": {
  66. "type": "git",
  67. "url": "git://github.com/repalash/threepipe.git",
  68. "directory": "plugins/extra-importers"
  69. }
  70. }