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.1KB

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