forked from vlang/vscode-vlang
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
143 lines (143 loc) · 2.78 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
{
"name": "vscode-vlang",
"displayName": "V",
"description": "V Language everywhere (syntax highlighting, themes, snippets) for Visual Studio Code.",
"publisher": "0x9ef",
"icon": "icons/icon.png",
"version": "0.0.9",
"license": "SEE LICENSE IN LICENSE",
"private": true,
"engines": {
"vscode": "^1.20.0"
},
"homepage": "https://github.com/0x9ef/vscode-vlang/blob/master/README.md",
"bugs": {
"url": "https://github.com/0x9ef/vscode-vlang/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/0x9ef/vscode-vlang.git"
},
"keywords": [
"V",
"v",
"v language",
"vlang",
"extension",
"autocompletion"
],
"categories": [
"Snippets",
"Programming Languages"
],
"contributes": {
"snippets": [
{
"language": "v",
"path": "snippets/snippets.json"
}
],
"languages": [
{
"id": "v",
"aliases": [
"V"
],
"extensions": [
".v",
".vh",
".vsh"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "v",
"scopeName": "source.v",
"path": "./syntaxes/v.tmLanguage.json"
}
],
"configuration": {
"title": "V",
"properties": {
"v.format.args": {
"scope": "resource",
"type": "string",
"default": "",
"description": "Arguments to pass to 'vfmt'"
}
}
},
"configurationDefaults": {
"[v]": {
"editor.insertSpaces": false,
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": true
}
}
},
"commands": [
{
"command": "v.run",
"title": "V: Run current file"
},
{
"command": "v.prod",
"title": "V: Build an optimized executable from current file"
},
{
"command": "v.help",
"title": "V: Show help info"
},
{
"command": "v.ver",
"title": "V: Show version info"
},
{
"command": "v.path",
"title": "V: Show local paths info"
},
{
"command": "v.test.file",
"title": "V: Test current file"
},
{
"command": "v.test.package",
"title": "V: Test current package"
},
{
"command": "v.playground",
"title": "V: Upload and share current code to V playground"
}
]
},
"activationEvents": [
"onLanguage:v",
"onCommand:v.run",
"onCommand:v.prod",
"onCommand:v.help",
"onCommand:v.ver",
"onCommand:v.path",
"onCommand:v.test.file",
"onCommand:v.test.package",
"onCommand:v.playground"
],
"main": "./out/extension.js",
"dependencies": {
"vscode-languageclient": "~5.2.1"
},
"devDependencies": {
"@types/node": "^13.1.1",
"@types/vscode": "~1.20.0",
"markdownlint-cli": "0.20.0",
"typescript": "~3.5.2"
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "npx markdownlint *.md",
"watch": "tsc -watch -p ./"
}
}