-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
124 lines (124 loc) · 3.35 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
{
"name": "cocoslua",
"displayName": "cocoslua",
"description": "lua intellisense optimized for cocos2d-x",
"keywords": [
"lua",
"cocos",
"cocos2d",
"cocos2d-x",
"cocos-lua"
],
"version": "0.1.9",
"publisher": "wonyee",
"engines": {
"vscode": "^1.24.0"
},
"icon": "images/icon.png",
"categories": [
"Programming Languages"
],
"activationEvents": [
"onLanguage:lua",
"onView:symbolOutline"
],
"main": "./out/extension",
"repository": {
"type": "git",
"url": "https://github.com/wonyee/vscode-cocoslua"
},
"contributes": {
"commands": [
{
"command": "symbolOutline.refresh",
"title": "Refresh code outline",
"icon": {
"dark": "resources/dark/icon-refresh.svg",
"light": "resources/light/icon-refresh.svg"
}
},
{
"command": "symbolOutline.revealCurrentSymbol",
"title": "Show in code outline"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "outline",
"title": "Outline",
"icon": "resources/icon.svg"
}
]
},
"snippets": [
{
"language": "lua",
"path": "./snippets/luasnippets.json"
}
],
"views": {
"outline": [
{
"id": "symbolOutline",
"name": "Code Outline"
}
]
},
"menus": {
"editor/context": [
{
"command": "symbolOutline.revealCurrentSymbol",
"group": "navigation"
}
],
"view/title": [
{
"command": "symbolOutline.refresh",
"when": "view == symbolOutline",
"group": "navigation"
}
]
},
"languages": [
{
"id": "lua",
"aliases": [
"cocoslua",
"lua",
"cocos-lua"
],
"extensions": [
"lua"
],
"configuration": "./language-configuration.json"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^7.10.6",
"tslint": "^5.17.0",
"typescript": "^2.9.2",
"vscode": "^1.1.34"
},
"dependencies": {
"autoc": "0.0.2",
"fs-extra": "^6.0.1",
"lua-fmt": "^2.6.0",
"luaparse": "^0.2.1",
"utf8": "^3.0.0",
"vscode-debug-logger": "0.0.5",
"vscode-debugadapter": "^1.35.0",
"vscode-debugprotocol": "^1.35.0",
"vscode-extension-telemetry": "0.0.17",
"vscode-languageclient": "^4.4.2"
}
}