@schemastore/vim-addon-info 0.0.1 → 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 CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) Florian Keller. All rights reserved.
3
+ Copyright (c) Florian Imdahl. All rights reserved.
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -5,8 +5,8 @@
5
5
  This package contains type definitions for vim-addon-info.
6
6
 
7
7
  ## Details
8
- Files were exported from https://github.com/ffflorian/schemastore-updater/tree/master/schemas/vim-addon-info.
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: Tue, Mar 31, 2020, 08:28:20 GMT
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
- /* tslint:disable */
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]: any;
31
+ [k: string]: unknown;
24
32
  }
25
33
  | {
26
34
  type: RepoType;
27
35
  url: Url;
28
- [k: string]: any;
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]: any;
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]: any;
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,14 +1,14 @@
1
1
  {
2
- "author": "Florian Keller <github@floriankeller.de>",
2
+ "author": "Florian Imdahl <git@ffflorian.de>",
3
3
  "dependencies": {},
4
4
  "description": "TypeScript definitions for vim-addon-info.",
5
5
  "license": "MIT",
6
6
  "main": "index.d.ts",
7
7
  "name": "@schemastore/vim-addon-info",
8
- "repository": "https://github.com/ffflorian/schemastore-updater/tree/master/schemas/vim-addon-info",
8
+ "repository": "https://github.com/ffflorian/schemastore-updater/tree/main/schemas/vim-addon-info",
9
9
  "scripts": {},
10
- "typesPublisherContentHash": "1f4b469cf959d4aea4ce01f1292a8ed98854bc45d166edef81db007212728afb",
10
+ "typesPublisherContentHash": "7b3aeb723f2e621fd3a94035fb667d88239cf561c0a46731a9d33f5399925e6e",
11
11
  "types": "index.d.ts",
12
- "version": "0.0.1",
12
+ "version": "0.0.3",
13
13
  "typeScriptVersion": "2.2"
14
14
  }