13 lines
330 B
TypeScript
13 lines
330 B
TypeScript
/**
|
|
* Project information and version
|
|
*/
|
|
|
|
import denoConfig from '../deno.json' with { type: 'json' };
|
|
|
|
export const projectInfo = {
|
|
name: denoConfig.name,
|
|
version: denoConfig.version,
|
|
description: 'Self-hosted container platform with automatic SSL and DNS',
|
|
repository: 'https://code.foss.global/serve.zone/onebox',
|
|
};
|