Add the integrations field to the existing puzzmo.json:
{
"$schema": "https://dev.puzzmo.com/schema/puzzmo-file-schema.json",
"game": {
"displayName": "Your Game",
"slug": "GAMESLUG",
"teamID": "TEAMID"
},
"integrations": {
"leaderboards": [
{
"displayName": "Fastest Time",
"stableID": "game-GAMESLUG:time",
"order": "Lower=better",
"deedID": "time",
"formatString": "[time]"
},
{
"displayName": "High Score",
"stableID": "game-GAMESLUG:points",
"order": "Higher=better",
"deedID": "points",
"formatString": "%@"
}
]
},
"output": {
"dir": "dist"
}
}