manifest.json 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "id": "coloring",
  3. "name": "填色互动广告",
  4. "description": "WebGL 填色核心玩法,点击区域上色,完成后展示宣传界面与 CTA 引导下载",
  5. "version": "1.0.0",
  6. "assets": {
  7. "uploadFormat": "zip",
  8. "required": [
  9. { "key": "config", "file": "config.json", "label": "区域配置文件", "accept": ".json" },
  10. { "key": "page", "file": "page.png", "label": "线稿图", "accept": ".png,.jpg,.jpeg" },
  11. { "key": "map", "file": "map.png", "label": "映射图", "accept": ".png" }
  12. ],
  13. "optional": [
  14. { "key": "special", "file": "special.jpeg", "label": "着色参考图(推荐,无则自动生成)", "accept": ".jpeg,.jpg,.png" }
  15. ]
  16. },
  17. "theme": {
  18. "properties": [
  19. { "key": "bgGradient", "label": "背景渐变", "type": "css-gradient", "default": "linear-gradient(160deg, #fff9f2 0%, #ffeedd 100%)" },
  20. { "key": "ctaGradient", "label": "CTA 按钮渐变", "type": "css-gradient", "default": "linear-gradient(135deg, #ff5f1f 0%, #ffb300 100%)" },
  21. { "key": "ctaText", "label": "CTA 按钮文案", "type": "text", "default": "PLAY NOW", "maxLength": 30 },
  22. { "key": "progressColor", "label": "进度条颜色", "type": "color", "default": "#07ce07" }
  23. ]
  24. },
  25. "platforms": {
  26. "available": ["google", "applovin", "unity", "playturbo", "mintegral"],
  27. "defaults": ["google", "applovin"]
  28. },
  29. "build": {
  30. "command": "npx vite build",
  31. "cwd": "templates/coloring",
  32. "outputPatterns": [
  33. { "platform": "google", "path": "dist/google/index.html" },
  34. { "platform": "applovin", "path": "dist/applovin/index.html" },
  35. { "platform": "unity", "path": "dist/unity/index.html" },
  36. { "platform": "playturbo", "path": "dist/playturbo/index.html" },
  37. { "platform": "mintegral", "path": "dist/mintegral/index.html" }
  38. ],
  39. "adConfigAlias": "#ad-config",
  40. "adConfigPath": "src/filler/_ad_config_.ts",
  41. "adConfigDefault": "src/filler/ad-config.ts",
  42. "assetsSymlink": {
  43. "source": "assets/user",
  44. "target": "../../storage/creatives/{creativeId}/assets"
  45. }
  46. }
  47. }