-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
45 lines (45 loc) · 957 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
{
"name": "tabletopsimulator-lua",
"main": "./lib/tabletopsimulator-lua",
"version": "13.2.0",
"description": "Official plugin for Tabletop Simulator's Lua Scripting.",
"keywords": [
"tabletop",
"simulator",
"tabletop simulator",
"tabletopsimulator",
"lua"
],
"repository": "https://github.com/Knils/atom-tabletopsimulator-lua",
"license": "MIT",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"providedServices": {
"autocomplete.provider": {
"versions": {
"2.0.0": "getProvider"
}
},
"linter": {
"versions": {
"2.0.0": "provideLinter"
}
}
},
"consumedServices": {
"status-bar": {
"versions": {
"^1.0.0": "consumeStatusBar"
}
}
},
"dependencies": {
"atom-space-pen-views": "^2.0.0",
"luabundle": "^1.6.0",
"mkdirp": "~0.5.1",
"moonsharp-luaparse": "^0.2.4",
"q": "^1.5.1",
"space-pen": "^5.1.1"
}
}