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 1.8KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "name": "@threepipe/plugin-blueprintjs",
  3. "description": "Blueprint.js UI Plugin for ThreePipe",
  4. "version": "0.1.0",
  5. "devDependencies": {
  6. "uiconfig-blueprint": "^0.0.3"
  7. },
  8. "dependencies": {
  9. "threepipe": "file:./../../src/"
  10. },
  11. "type": "module",
  12. "main": "dist/index.js",
  13. "module": "dist/index.mjs",
  14. "types": "dist/index.d.ts",
  15. "source": "src/index.ts",
  16. "files": [
  17. "dist",
  18. "src"
  19. ],
  20. "scripts": {
  21. "new:pack": "npm run prepare && clean-package && npm pack && clean-package restore",
  22. "new:publish": "npm run prepare && clean-package && npm publish --access public && clean-package restore",
  23. "prepare": "npm run build",
  24. "build": "rimraf dist && NODE_ENV=production rollup -c",
  25. "dev": "rollup -c -w",
  26. "docs": "rimraf docs && npx typedoc"
  27. },
  28. "author": "repalash <palash@shaders.app>",
  29. "license": "Apache-2.0",
  30. "keywords": [
  31. "three",
  32. "three.js",
  33. "blueprint",
  34. "threepipe",
  35. "plugin"
  36. ],
  37. "bugs": {
  38. "url": "https://github.com/repalash/threepipe/issues"
  39. },
  40. "homepage": "https://github.com/repalash/threepipe#readme",
  41. "repository": {
  42. "type": "git",
  43. "url": "git://github.com/repalash/threepipe.git"
  44. },
  45. "clean-package": {
  46. "remove": [
  47. "clean-package",
  48. "scripts",
  49. "devDependencies",
  50. "//",
  51. "markdown-to-html"
  52. ],
  53. "replace": {
  54. "dependencies": {
  55. "threepipe": "^0.0.18"
  56. }
  57. }
  58. },
  59. "//": {
  60. "dependencies": {
  61. "uiconfig-blueprint": "^0.0.3"
  62. },
  63. "local_dependencies": {
  64. "uiconfig-blueprint": "^file:./../uiconfig-blueprint"
  65. }
  66. }
  67. }