-
-
Notifications
You must be signed in to change notification settings - Fork 817
/
Copy pathexample-channel.json
73 lines (65 loc) · 2.25 KB
/
example-channel.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
// BE SURE TO REMOVE THESE COMMENTS BEFORE USING THIS TEMPLATE SINCE
// COMMENTS ARE NOT ALLOWED IN JSON
// Used by LSP and LSP-json to provide linting and completions.
"$schema": "sublime://packagecontrol.io/schemas/channel",
"schema_version": "4.0.0",
// All repositories must be an HTTPS URL. SSL certificates help prevent
// unauthorized code being loaded onto users' machines.
"repositories": [
"https://packagecontrol.io/packages.json",
"https://github.com/buymeasoda/soda-theme",
"https://github.com/SublimeText"
],
// The "packages_cache" is completely optional, but allows the
// channel to cache and deliver package data from multiple
// repositories in a single HTTP request, allowing for significantly
// improved performance.
"packages_cache": {
// The first level keys are the repository URLs
"https://packagecontrol.io/packages.json": [
// Each repository has an array of packages with their fully
// expanded info. This means that the "details" key must be expanded
// into the various keys it provides.
{
"name": "Alignment",
"description": "Multi-line and multiple selection alignment plugin",
"author": "wbond",
"homepage": "http://wbond.net/sublime_packages/alignment",
"releases": [
{
"version": "2.0.0",
"date": "2011-09-18 20:12:41",
"url": "https://packagecontrol.io/Alignment.sublime-package",
"sublime_text": "*"
}
]
}
]
},
// The "libraries_cache" is just like "packages_cache", but for libraries.
"libraries_cache": {
"https://packagecontrol.io/packages.json": [
// Like with packages, library info must be fully resolved,
// which for packages means releases must have "url", "version",
// "sublime_text" and "platforms" keys instead of "base" and "tags".
{
"name": "bz2",
"description": "Python bz2 module",
"author": "wbond",
"homepage": "https://github.com/wbond/package_control",
"issues": "https://github.com/wbond/package_control/issues",
"releases": [
{
"version": "1.0.0",
"date": "2011-09-18 20:12:41",
"url": "https://codeload.github.com/codexns/sublime-bz2/zip/1.0.0",
"sublime_text": "*",
"platforms": ["*"],
"python_versions": ["3.3", "3.8"]
}
]
}
]
}
}