threepipe
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "@threepipe/plugin-configurator",
  3. "description": "Plugins for creating material and object configurators in threepipe.",
  4. "version": "0.1.1",
  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. "markdown-to-html"
  18. ],
  19. "replace": {
  20. "dependencies": {},
  21. "peerDependencies": {
  22. "threepipe": "^0.0.30"
  23. }
  24. }
  25. },
  26. "type": "module",
  27. "main": "dist/index.js",
  28. "module": "dist/index.mjs",
  29. "types": "dist/index.d.ts",
  30. "files": [
  31. "dist",
  32. "src"
  33. ],
  34. "scripts": {
  35. "new:pack": "npm run prepare && clean-package && npm pack && clean-package restore",
  36. "new:publish": "npm run prepare && clean-package && npm publish --access public && clean-package restore",
  37. "prepare": "npm run build && npm run docs",
  38. "build": "rimraf dist && vite build",
  39. "dev": "NODE_ENV=development vite build --watch",
  40. "docs": "rimraf docs && npx typedoc"
  41. },
  42. "author": "repalash <palash@shaders.app>",
  43. "license": "Apache-2.0",
  44. "keywords": [
  45. "three",
  46. "three.js",
  47. "threepipe",
  48. "vite",
  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/configurator"
  59. }
  60. }