-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
46 lines (46 loc) · 924 Bytes
/
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
{
"name": "atom-latex",
"main": "./lib/main",
"version": "0.7.0",
"description": "The only LaTeX package you need for typesetting with Atom.",
"license": "MIT",
"keywords": [
"latex",
"compile",
"preview",
"synctex",
"highlight"
],
"repository": "https://github.com/James-Yu/Atom-LaTeX",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"providedServices": {
"autocomplete.provider": {
"versions": {
"2.0.0": "provide"
}
}
},
"consumedServices": {
"status-bar": {
"versions": {
"^1.0.0": "consumeStatusBar"
}
},
"minimap": {
"versions": {
"^1.0.0": "consumeMinimap"
}
}
},
"dependencies": {
"atom-message-panel": "^1.3.0",
"atom-space-pen-views": "^2.2.0",
"etch": "^0.8.0",
"glob": "^7.1.1",
"hasbin": "^1.2.3",
"latex-symbols-list": "^0.1.2",
"ws": "^1.1.1"
}
}