package.json 953 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "fmode-image",
  3. "version": "2.0.0",
  4. "description": "AI架构图和场景插图生成器。6种模式(--app/--arch/--scene/--slide),自动读API Key,零依赖纯ESM。",
  5. "type": "module",
  6. "main": "./lib/fmode-image.mjs",
  7. "exports": {
  8. ".": {
  9. "import": "./lib/fmode-image.mjs",
  10. "default": "./lib/fmode-image.mjs"
  11. }
  12. },
  13. "bin": {
  14. "fmode-image": "./bin/fmode-image.mjs"
  15. },
  16. "files": [
  17. "lib/",
  18. "bin/",
  19. "skills/",
  20. "scripts/",
  21. "README.md",
  22. "LICENSE",
  23. "skill-package-manifest.json"
  24. ],
  25. "keywords": ["fmode", "image", "ai", "architecture", "diagram", "scene", "presentation"],
  26. "license": "MIT",
  27. "repository": {
  28. "type": "git",
  29. "url": "git+https://github.com/fmodecn/fmode-image.git"
  30. },
  31. "bugs": {
  32. "url": "https://github.com/fmodecn/fmode-image/issues"
  33. },
  34. "homepage": "https://github.com/fmodecn/fmode-image#readme",
  35. "engines": {
  36. "node": ">=18"
  37. }
  38. }