@shisho/plugin-types 0.0.0 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/global.d.ts +0 -2
- package/package.json +7 -2
package/global.d.ts
CHANGED
|
@@ -3,9 +3,7 @@ import { ShishoHostAPI } from "./host-api";
|
|
|
3
3
|
|
|
4
4
|
declare global {
|
|
5
5
|
/** Host API object providing logging, config, HTTP, filesystem, archive, XML, and FFmpeg access. */
|
|
6
|
-
// eslint-disable-next-line no-var
|
|
7
6
|
var shisho: ShishoHostAPI;
|
|
8
7
|
/** Plugin object that defines hook implementations. */
|
|
9
|
-
// eslint-disable-next-line no-var
|
|
10
8
|
var plugin: ShishoPlugin;
|
|
11
9
|
}
|
package/package.json
CHANGED
|
@@ -1,11 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shisho/plugin-types",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
4
4
|
"description": "TypeScript type definitions for Shisho plugin development",
|
|
5
5
|
"homepage": "https://github.com/shishobooks/shisho/blob/master/packages/plugin-types/README.md",
|
|
6
6
|
"types": "index.d.ts",
|
|
7
7
|
"files": [
|
|
8
8
|
"*.d.ts"
|
|
9
9
|
],
|
|
10
|
-
"license": "MIT"
|
|
10
|
+
"license": "MIT",
|
|
11
|
+
"repository": {
|
|
12
|
+
"type": "git",
|
|
13
|
+
"url": "https://github.com/shishobooks/shisho.git",
|
|
14
|
+
"directory": "packages/plugin-types"
|
|
15
|
+
}
|
|
11
16
|
}
|