@schemastore/vim-addon-info 0.0.2 → 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/LICENSE +21 -0
- package/README.md +1 -1
- package/index.d.ts +48 -6
- package/package.json +3 -3
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) Florian Imdahl. All rights reserved.
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE
|
package/README.md
CHANGED
|
@@ -8,5 +8,5 @@ This package contains type definitions for vim-addon-info.
|
|
|
8
8
|
Files were exported from https://github.com/ffflorian/schemastore-updater/tree/main/schemas/vim-addon-info.
|
|
9
9
|
|
|
10
10
|
## Additional Details
|
|
11
|
-
* Last updated:
|
|
11
|
+
* Last updated: Fri, Feb 24, 2023, 11:23:41 GMT
|
|
12
12
|
* Dependencies: none
|
package/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*
|
|
1
|
+
/* eslint-disable */
|
|
2
2
|
/**
|
|
3
3
|
* This file was automatically generated by json-schema-to-typescript.
|
|
4
4
|
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
|
|
@@ -10,7 +10,15 @@ export type Url = string;
|
|
|
10
10
|
/**
|
|
11
11
|
* Info about a plugin/repository outside this one.
|
|
12
12
|
*/
|
|
13
|
-
export type OtherRepository =
|
|
13
|
+
export type OtherRepository = OtherRepository1 & {
|
|
14
|
+
/**
|
|
15
|
+
* Primary homepage of the plugin.
|
|
16
|
+
*/
|
|
17
|
+
homepage?: string;
|
|
18
|
+
"addon-info"?: JSONSchemaForVimPluginAddonInfoJsonMetadataFiles1;
|
|
19
|
+
[k: string]: unknown;
|
|
20
|
+
};
|
|
21
|
+
export type OtherRepository1 =
|
|
14
22
|
| {}
|
|
15
23
|
| {
|
|
16
24
|
type?: "" | "archive";
|
|
@@ -20,12 +28,12 @@ export type OtherRepository =
|
|
|
20
28
|
*/
|
|
21
29
|
vim_script_nr?: number;
|
|
22
30
|
"script-type"?: "color scheme" | "ftplugin" | "game" | "indent" | "syntax" | "utility" | "patch";
|
|
23
|
-
[k: string]:
|
|
31
|
+
[k: string]: unknown;
|
|
24
32
|
}
|
|
25
33
|
| {
|
|
26
34
|
type: RepoType;
|
|
27
35
|
url: Url;
|
|
28
|
-
[k: string]:
|
|
36
|
+
[k: string]: unknown;
|
|
29
37
|
};
|
|
30
38
|
|
|
31
39
|
export interface JSONSchemaForVimPluginAddonInfoJsonMetadataFiles {
|
|
@@ -60,7 +68,7 @@ export interface JSONSchemaForVimPluginAddonInfoJsonMetadataFiles {
|
|
|
60
68
|
dependencies?: {
|
|
61
69
|
[k: string]: OtherRepository;
|
|
62
70
|
};
|
|
63
|
-
[k: string]:
|
|
71
|
+
[k: string]: unknown;
|
|
64
72
|
}
|
|
65
73
|
/**
|
|
66
74
|
* Info for the plugin itself. Describes where the canonical copy of the plugin can be fetched from.
|
|
@@ -72,5 +80,39 @@ export interface SelfRepository {
|
|
|
72
80
|
* For a deprecated plugin, a deprecation message to be shown to any user who installs the plugin.
|
|
73
81
|
*/
|
|
74
82
|
deprecated?: string;
|
|
75
|
-
[k: string]:
|
|
83
|
+
[k: string]: unknown;
|
|
84
|
+
}
|
|
85
|
+
export interface JSONSchemaForVimPluginAddonInfoJsonMetadataFiles1 {
|
|
86
|
+
/**
|
|
87
|
+
* The name of the plugin. Used by plugin managers and some introspection tools. Generally corresponds to the name of the repository but without "vim" prefix/suffix.
|
|
88
|
+
*/
|
|
89
|
+
name?: string;
|
|
90
|
+
/**
|
|
91
|
+
* Dotted version number of the plugin, generally in semantic versioning scheme.
|
|
92
|
+
*/
|
|
93
|
+
version?: string;
|
|
94
|
+
/**
|
|
95
|
+
* Short description of the plugin and what it does (a sentence or two)
|
|
96
|
+
*/
|
|
97
|
+
description?: string;
|
|
98
|
+
/**
|
|
99
|
+
* Primary homepage of the plugin.
|
|
100
|
+
*/
|
|
101
|
+
homepage?: string;
|
|
102
|
+
/**
|
|
103
|
+
* Name of the person or organization that created the plugin
|
|
104
|
+
*/
|
|
105
|
+
author?: string;
|
|
106
|
+
/**
|
|
107
|
+
* Name of the person who maintains the plugin
|
|
108
|
+
*/
|
|
109
|
+
maintainer?: string;
|
|
110
|
+
repository?: SelfRepository;
|
|
111
|
+
/**
|
|
112
|
+
* Plugins that are strictly required for the plugin to work, where keys are plugin names and values may describe where plugins can be fetched from.
|
|
113
|
+
*/
|
|
114
|
+
dependencies?: {
|
|
115
|
+
[k: string]: OtherRepository;
|
|
116
|
+
};
|
|
117
|
+
[k: string]: unknown;
|
|
76
118
|
}
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"author": "Florian
|
|
2
|
+
"author": "Florian Imdahl <git@ffflorian.de>",
|
|
3
3
|
"dependencies": {},
|
|
4
4
|
"description": "TypeScript definitions for vim-addon-info.",
|
|
5
5
|
"license": "MIT",
|
|
@@ -7,8 +7,8 @@
|
|
|
7
7
|
"name": "@schemastore/vim-addon-info",
|
|
8
8
|
"repository": "https://github.com/ffflorian/schemastore-updater/tree/main/schemas/vim-addon-info",
|
|
9
9
|
"scripts": {},
|
|
10
|
-
"typesPublisherContentHash": "
|
|
10
|
+
"typesPublisherContentHash": "7b3aeb723f2e621fd3a94035fb667d88239cf561c0a46731a9d33f5399925e6e",
|
|
11
11
|
"types": "index.d.ts",
|
|
12
|
-
"version": "0.0.
|
|
12
|
+
"version": "0.0.3",
|
|
13
13
|
"typeScriptVersion": "2.2"
|
|
14
14
|
}
|