This commit is contained in:
Dax Raad 2025-06-26 17:03:25 -04:00
parent db24bf87c0
commit 01c0e5bbff
2 changed files with 7 additions and 1 deletions

View file

@ -1,6 +1,7 @@
{
"$schema": "https://json.schemastore.org/package.json",
"version": "0.0.5", "name": "opencode",
"version": "0.0.5",
"name": "opencode",
"type": "module",
"private": true,
"scripts": {

View file

@ -0,0 +1,5 @@
export namespace Plugin {
export interface Info {
onLoad(): void
}
}