This repository has been archived by the owner on Jun 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
118 lines (118 loc) · 3.27 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
{
"name": "dota-reborn-code",
"displayName": "dota-reborn-code",
"description": "Help you with everything you need along dota2 modding",
"version": "0.5.1",
"publisher": "XavierCHN",
"icon": "images/xavier.png",
"engines": {
"vscode": "^1.0.0"
},
"categories": [
"Snippets",
"Languages",
"Other"
],
"repository": {
"url": "https://github.com/XavierCHN/Dota-Reborn-Code"
},
"license": "MIT",
"activationEvents": [
"onLanguage:xml",
"onLanguage:typescript",
"onLanguage:javascript",
"onCommand:drc.createTypeScriptDefination"
],
"main": "./out/src/extension",
"contributes": {
"languages": [
{
"id": "plaintext",
"aliases": [
"Dota KV"
],
"extensions": [
".kv",
".txt"
],
"configuration": "./language-configuration.json"
}
],
"commands": [
{
"command": "drc.createTypeScriptDefination",
"title": "Create Snippets for dota2 typescript"
}
],
"grammars": [
{
"language": "plaintext",
"scopeName": "source.txt",
"path": "./syntaxes/dotaKV.tmLanguage"
}
],
"snippets": [
{
"language": "lua",
"path": "./snippets/lua.json"
},
{
"language": "moonscript",
"path": "./snippets/lua.json"
},
{
"language": "lua",
"path": "./snippets/lua_complex.json"
},
{
"language": "moonscript",
"path": "./snippets/lua_complex.json"
},
{
"language": "lua",
"path": "./snippets/lua_ability.json"
},
{
"language": "moonscript",
"path": "./snippets/lua_ability.json"
},
{
"language": "javascript",
"path": "./snippets/javascript.json"
},
{
"language": "typescript",
"path": "./snippets/javascript.json"
},
{
"language": "lua",
"path": "./snippets/plaintext.json"
},
{
"language": "plaintext",
"path": "./snippets/plaintext.json"
},
{
"language": "xml",
"path": "./snippets/xml.json"
},
{
"language": "css",
"path": "./snippets/css.json"
}
]
},
"scripts": {
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"typescript": "^1.8.5",
"vscode": "^1.1.37"
},
"dependencies": {
"vscode-languageserver-types": "1.0.2",
"vscode-css-languageservice": "1.0.6"
}
}