threepipe
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

package.json 1.9KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "name": "@threepipe/plugin-blueprintjs",
  3. "description": "Blueprint.js UI Plugin for ThreePipe",
  4. "version": "0.2.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 && npm run docs",
  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. "peerDependencies": {
  56. "threepipe": "^0.0.18"
  57. }
  58. }
  59. },
  60. "//": {
  61. "dependencies": {
  62. "uiconfig-blueprint": "^0.0.3"
  63. },
  64. "local_dependencies": {
  65. "uiconfig-blueprint": "^file:./../uiconfig-blueprint"
  66. }
  67. }
  68. }