package.json 785 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "__SKILL_NAME__",
  3. "version": "0.1.0",
  4. "description": "__SUMMARY__",
  5. "type": "module",
  6. "main": "./lib/index.mjs",
  7. "exports": {
  8. ".": {
  9. "import": "./lib/index.mjs",
  10. "default": "./lib/index.mjs"
  11. }
  12. },
  13. "bin": {
  14. "__CLI_NAME__": "./bin/__CLI_NAME__.mjs"
  15. },
  16. "files": [
  17. "lib/",
  18. "bin/",
  19. "browser/",
  20. "skills/",
  21. "README.md",
  22. "LICENSE",
  23. "skill-package-manifest.json"
  24. ],
  25. "engines": {
  26. "node": ">=18"
  27. },
  28. "scripts": {
  29. "test": "node test/smoke.mjs"
  30. },
  31. "keywords": [
  32. "fmode",
  33. "skill",
  34. "__CLI_NAME__"
  35. ],
  36. "author": "Yuyang001 (FmodeAgent)",
  37. "license": "MIT",
  38. "repository": {
  39. "type": "git",
  40. "url": "git+https://github.com/fmodecn/__SKILL_NAME__.git"
  41. },
  42. "dependencies": {}
  43. }