manifest.json 861 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "short_name": "Sapper + TypeScript + GraphQL",
  3. "name": "Sapper with TypeScript and GraphQL project base",
  4. "description": "A template that includes Svelte with Sapper, TypeScript preprocessing, and a GraphQL server through TypeGraphQL",
  5. "categories": ["personalization", "productivity"],
  6. "lang": "en-US",
  7. "dir": "ltr",
  8. "icons": [
  9. {
  10. "src": "logo-192.png",
  11. "sizes": "192x192",
  12. "type": "image/png",
  13. "purpose": "any maskable"
  14. },
  15. {
  16. "src": "logo-512.png",
  17. "sizes": "512x512",
  18. "type": "image/png",
  19. "purpose": "any maskable"
  20. }
  21. ],
  22. "start_url": "/",
  23. "display": "minimal-ui",
  24. "background_color": "#ffffff",
  25. "theme_color": "#0096D1",
  26. "screenshots": [
  27. {
  28. "src": "screenshot-1.png",
  29. "sizes": "1280x720",
  30. "type": "image/png"
  31. },
  32. {
  33. "src": "screenshot-2.png",
  34. "sizes": "1280x720",
  35. "type": "image/png"
  36. }
  37. ]
  38. }