mirror of
https://github.com/BetterSEQTA/BetterSEQTA-Plus.git
synced 2026-06-06 03:34:40 +00:00
13 lines
283 B
TypeScript
13 lines
283 B
TypeScript
import { createManifest } from "../../lib/createManifest";
|
|
import baseManifest from "./manifest.json";
|
|
import pkg from "../../package.json";
|
|
|
|
export const opera = createManifest(
|
|
{
|
|
...baseManifest,
|
|
version: pkg.version,
|
|
description: pkg.description,
|
|
},
|
|
"opera",
|
|
);
|