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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. {
  2. "name": "@threepipe/plugin-configurator",
  3. "description": "Plugins for creating material and object configurators in threepipe.",
  4. "version": "0.1.3",
  5. "devDependencies": {
  6. },
  7. "dependencies": {
  8. "threepipe": "file:./../../src/",
  9. "tippy.js": "^6.3.7"
  10. },
  11. "clean-package": {
  12. "remove": [
  13. "clean-package",
  14. "scripts",
  15. "devDependencies"
  16. ],
  17. "replace": {
  18. "dependencies": {},
  19. "peerDependencies": {
  20. "threepipe": "^0.0.39"
  21. }
  22. }
  23. },
  24. "exports": {
  25. ".": {
  26. "types": "./dist/index.d.ts",
  27. "import": "./dist/index.mjs",
  28. "require": "./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.mjs",
  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-configurator-$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. "vite",
  58. "plugin"
  59. ],
  60. "bugs": {
  61. "url": "https://github.com/repalash/threepipe/issues"
  62. },
  63. "homepage": "https://github.com/repalash/threepipe#readme",
  64. "repository": {
  65. "type": "git",
  66. "url": "git://github.com/repalash/threepipe.git",
  67. "directory": "plugins/configurator"
  68. }
  69. }