mirror of
https://github.com/webinstall/webi-installers.git
synced 2026-03-05 10:50:18 +00:00
44 lines
787 B
JavaScript
44 lines
787 B
JavaScript
'use strict';
|
|
|
|
module.exports = async function () {
|
|
return {
|
|
releases: [
|
|
{
|
|
name: 'webi.tar',
|
|
version: '0.0.0',
|
|
lts: false,
|
|
channel: 'stable',
|
|
date: '',
|
|
os: 'linux',
|
|
arch: 'amd64',
|
|
ext: 'tar',
|
|
download: ''
|
|
},
|
|
{
|
|
name: 'webi.tar',
|
|
version: '0.0.0',
|
|
lts: false,
|
|
channel: 'stable',
|
|
date: '',
|
|
os: 'macos',
|
|
arch: 'amd64',
|
|
ext: 'tar',
|
|
download: ''
|
|
},
|
|
{
|
|
name: 'webi.tar',
|
|
version: '0.0.0',
|
|
lts: false,
|
|
channel: 'stable',
|
|
date: '',
|
|
os: 'windows',
|
|
arch: 'amd64',
|
|
ext: 'tar',
|
|
download: ''
|
|
}
|
|
],
|
|
formats: [],
|
|
downloads: ''
|
|
};
|
|
};
|