threepipe
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

package.json 1.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "threepipe-plugin-template-vite",
  3. "description": "Sample Threepipe plugin using vite",
  4. "version": "0.1.0",
  5. "devDependencies": {
  6. },
  7. "dependencies": {
  8. "threepipe": "file:./../../src/",
  9. "@threepipe/plugin-tweakpane": "file:./../tweakpane/src/"
  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.26",
  23. "@threepipe/plugin-tweakpane": "^0.2.0"
  24. }
  25. }
  26. },
  27. "type": "module",
  28. "main": "dist/index.js",
  29. "module": "dist/index.mjs",
  30. "types": "dist/index.d.ts",
  31. "files": [
  32. "dist",
  33. "src"
  34. ],
  35. "scripts": {
  36. "new:pack": "npm run prepare && clean-package && npm pack && clean-package restore",
  37. "new:publish": "npm run prepare && clean-package && npm publish --access public && clean-package restore",
  38. "prepare": "npm run build",
  39. "build": "rimraf dist && vite build",
  40. "dev": "NODE_ENV=development vite build --watch",
  41. "docs": "rimraf docs && npx typedoc"
  42. },
  43. "author": "repalash <palash@shaders.app>",
  44. "license": "Apache-2.0",
  45. "keywords": [
  46. "three",
  47. "three.js",
  48. "threepipe",
  49. "vite",
  50. "plugin"
  51. ],
  52. "bugs": {
  53. "url": "https://github.com/repalash/threepipe/issues"
  54. },
  55. "homepage": "https://github.com/repalash/threepipe#readme",
  56. "repository": {
  57. "type": "git",
  58. "url": "git://github.com/repalash/threepipe.git"
  59. }
  60. }