-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
145 lines (145 loc) · 3.18 KB
/
package.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
{
"name": "snooty",
"description": "Snooty is a next-generation documentation authoring IDE.",
"author": "MongoDB",
"license": "SEE LICENSE IN LICENSE",
"version": "0.12.1",
"icon": "misc/icon.png",
"galleryBanner": {
"color": "#FFF",
"theme": "light"
},
"repository": {
"type": "git",
"url": "https://github.com/mongodb/snooty-vscode"
},
"publisher": "snooty",
"categories": [
"Programming Languages",
"Linters"
],
"keywords": [],
"engines": {
"vscode": "^1.45.1"
},
"activationEvents": [
"workspaceContains:snooty.toml"
],
"main": "./dist/extension",
"contributes": {
"configuration": {
"type": "object",
"title": "Snooty",
"properties": {
"snooty.conflictingExtensions": {
"type": "array",
"default": [
"tht13.rst-vscode"
],
"description": "Extensions that might lead to conflicts.",
"scope": "application"
},
"snooty.languageServerPath": {
"type": [
"string",
"null"
],
"default": null,
"description": "Override the path to Snooty. Only required for Snooty developers."
},
"snooty.trace.server": {
"scope": "window",
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "Traces the communication between VS Code and the language server."
}
}
},
"languages": [
{
"id": "restructuredtext",
"aliases": [
"reStructuredText",
"restructuredtext",
"ReStructured Text",
"reStructured Text",
"RST",
"ReST",
"reST"
],
"extensions": [
".rst",
".rest",
".txt"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "restructuredtext",
"scopeName": "text.restructuredtext",
"path": "./syntaxes/restructuredtext.tmLanguage"
}
],
"commands": [
{
"command": "snooty.restart",
"title": "Restart Snooty",
"description": "Sometimes, it's just best to try turning it off and on again"
}
],
"snippets": [
{
"language": "restructuredtext",
"path": "./snippets/snooty.code-snippets"
}
]
},
"extensionDependencies": [
"tamasfe.even-better-toml"
],
"runtimeDependencies": [
{
"description": "Snooty Language Server for macOS (x64)",
"installPath": ".snooty",
"installTestPath": ".snooty/snooty/snooty"
}
],
"scripts": {
"vscode:prepublish": "export NODE_ENV=production && make clean && make snippets && webpack --mode production",
"compile": "webpack --mode none",
"watch": "webpack --mode none --watch"
},
"dependencies": {
"@types/mime": "^2.0.1",
"@types/yauzl-promise": "^2.1.0",
"https-proxy-agent": "^2.2.4",
"mime": "^2.4.4",
"mkdirp": "^0.5.1",
"node-fetch": "^3.3.2",
"open": "^6.4.0",
"tmp-promise": "^2.0.2",
"@vscode/vsce": "^2.21.0",
"vscode-languageclient": "^5.2.1",
"yauzl": "^2.10.0",
"yauzl-promise": "^2.1.3"
},
"devDependencies": {
"@types/mkdirp": "^1.0.0",
"@types/mocha": "^5.2.7",
"@types/node": "^8.10.58",
"@types/vscode": "1.45.1",
"@types/yauzl": "^2.9.1",
"ts-loader": "^6.2.1",
"tslint": "^5.20.0",
"typescript": "^3.6.4",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
}
}