threepipe
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

package.json 1.6KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. "replace": {
  18. "dependencies": {},
  19. "peerDependencies": {
  20. "threepipe": "^0.0.30"
  21. }
  22. }
  23. },
  24. "type": "module",
  25. "main": "dist/index.js",
  26. "module": "dist/index.mjs",
  27. "types": "dist/index.d.ts",
  28. "files": [
  29. "dist",
  30. "src"
  31. ],
  32. "scripts": {
  33. "new:pack": "npm run prepare && clean-package && npm pack && clean-package restore",
  34. "new:publish": "npm run prepare && clean-package && npm publish --access public && clean-package restore",
  35. "prepare": "npm run build && npm run docs",
  36. "build": "rimraf dist && vite build",
  37. "dev": "NODE_ENV=development vite build --watch",
  38. "docs": "rimraf docs && npx typedoc"
  39. },
  40. "author": "repalash <palash@shaders.app>",
  41. "license": "Apache-2.0",
  42. "keywords": [
  43. "three",
  44. "three.js",
  45. "threepipe",
  46. "vite",
  47. "plugin"
  48. ],
  49. "bugs": {
  50. "url": "https://github.com/repalash/threepipe/issues"
  51. },
  52. "homepage": "https://github.com/repalash/threepipe#readme",
  53. "repository": {
  54. "type": "git",
  55. "url": "git://github.com/repalash/threepipe.git",
  56. "directory": "plugins/configurator"
  57. }
  58. }