-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.23 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
{
"name": "swirl-lang-support",
"displayName": "Swirl",
"license": "GPL 3.0",
"homepage": "https://github.com/SwirlLang/Swirl-vscode-extension",
"repository": {
"type": "git",
"url": "https://github.com/SwirlLang/Swirl-vscode-extension"
},
"icon": "icon.png",
"description": "Swirl extension for VS Code",
"version": "0.7.1",
"publisher": "MrinmoyHaloi",
"engines": {
"vscode": "^1.59.0"
},
"activationEvents": [
"onLanguage:swirl"
],
"main": "./client/out/extension",
"categories": [
"Programming Languages",
"Snippets"
],
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -b",
"watch": "tsc -b -w",
"postinstall": "cd client && npm install && cd ../server && npm install && cd .."
},
"contributes": {
"languages": [
{
"id": "swirl",
"aliases": [
"Swirl",
"swirl"
],
"extensions": [
".sw",
".swirl"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "swirl",
"scopeName": "source.swirl",
"path": "./syntaxes/swirl.tmLanguage.json"
}
],
"snippets": [
{
"language": "swirl",
"path": "./snippets.json"
}
],
"configuration": {
"title": "Swirl",
"properties": {
"SwirlLangServer.trace.server": {
"scope": "window",
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "Traces the communication between VS Code and the language server."
}
}
}
},
"devDependencies": {
"@types/node": "^17.0.17",
"@types/vscode": "^1.32.0",
"typescript": "^4.6.3"
}
}