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

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {
  2. "name": "@threepipe/plugin-gltf-transform",
  3. "description": "Utility plugins for threepipe using gltf-transform to optimize/compress glTF files.",
  4. "version": "0.1.3",
  5. "devDependencies": {
  6. "@gltf-transform/core": "3.2.1",
  7. "@gltf-transform/extensions": "3.2.1"
  8. },
  9. "dependencies": {
  10. "threepipe": "file:./../../src/"
  11. },
  12. "exports": {
  13. ".": {
  14. "types": "./dist/index.d.ts",
  15. "import": "./dist/index.mjs",
  16. "require": "./dist/index.js"
  17. },
  18. "./dist/": {
  19. "import": "./dist/",
  20. "require": "./dist/"
  21. }
  22. },
  23. "clean-package": {
  24. "remove": [
  25. "clean-package",
  26. "scripts",
  27. "devDependencies"
  28. ],
  29. "replace": {
  30. "dependencies": {},
  31. "peerDependencies": {
  32. "threepipe": "^0.0.39"
  33. }
  34. }
  35. },
  36. "type": "module",
  37. "main": "dist/index.js",
  38. "module": "dist/index.mjs",
  39. "types": "dist/index.d.ts",
  40. "files": [
  41. "dist",
  42. "src"
  43. ],
  44. "scripts": {
  45. "new:pack": "npm run prepare && clean-package && npm pack && clean-package restore",
  46. "new:publish": "git diff --exit-code --name-only HEAD * && npm run prepare && clean-package && npm publish --access public && clean-package restore && git tag plugin-gltf-transform-$npm_package_version",
  47. "prepare": "npm run build && npm run docs",
  48. "build": "rimraf dist && vite build",
  49. "dev": "NODE_ENV=development vite build --watch",
  50. "docs": "rimraf docs && npx typedoc"
  51. },
  52. "author": "repalash <palash@shaders.app>",
  53. "license": "Apache-2.0",
  54. "keywords": [
  55. "three",
  56. "three.js",
  57. "threepipe",
  58. "vite",
  59. "plugin"
  60. ],
  61. "bugs": {
  62. "url": "https://github.com/repalash/threepipe/issues"
  63. },
  64. "homepage": "https://github.com/repalash/threepipe#readme",
  65. "repository": {
  66. "type": "git",
  67. "url": "git://github.com/repalash/threepipe.git",
  68. "directory": "plugins/gltf-transform"
  69. }
  70. }