threepipe
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

package.json 1.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "@threepipe/plugin-blend-importer",
  3. "description": "Basic importer for .blend file",
  4. "version": "0.0.2",
  5. "devDependencies": {
  6. },
  7. "dependencies": {
  8. "threepipe": "file:./../../src/"
  9. },
  10. "clean-package": {
  11. "remove": [
  12. "clean-package",
  13. "scripts",
  14. "devDependencies",
  15. "//",
  16. "markdown-to-html"
  17. ],
  18. "replace": {
  19. "replace": {
  20. "dependencies": {},
  21. "peerDependencies": {
  22. "threepipe": "^0.0.13"
  23. }
  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 && npm run docs",
  39. "build": "rimraf dist && NODE_ENV=production rollup -c",
  40. "dev": "rollup -c -w",
  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. "editor",
  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. }