Compare commits

...

2 Commits

2 changed files with 6 additions and 5 deletions

View File

@ -1,6 +1,6 @@
{
"license": "MIT",
"version": "1.0.0-alpha.4",
"version": "1.0.0-alpha.5",
"name": "@flaschengeist/types",
"author": "Ferdinand Thiessen <rpm@fthiessen.de>",
"homepage": "https://flaschengeist.dev/",
@ -19,12 +19,12 @@
"pretty": "prettier --config ./package.json --write '{,!(node_modules)/**/}*.ts'"
},
"peerDependencies": {
"vue": "~3.2.4",
"vue-router": "~4.0.11"
"vue": "^3.2.4",
"vue-router": "^4.0.11"
},
"devDependencies": {
"prettier": "^2.3.2",
"typescript": "^4.3.5"
"prettier": "^2.4.1",
"typescript": "^4.4.4"
},
"prettier": {
"singleQuote": true,

1
types/plugin.d.ts vendored
View File

@ -76,6 +76,7 @@ export namespace FG_Plugin {
* Loaded Flaschengeist plugin
*/
interface LoadedPlugin {
id: string;
name: string;
version: string;
notification(msg: FG.Notification): FG_Plugin.Notification;