-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 2.59 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
{
"name": "casm-lang.plugin.vscode",
"displayName": "CASM",
"description": "CASM language support. A VSCode client extension for the CASM LSP Server (casmd), build by the CASM Organization.",
"author": "CASM Organization (https://casm-lang.org)",
"publisher": "casm-lang",
"version": "0.1.0",
"license": "GPL-3.0+",
"icon": "etc/language-icon.png",
"galleryBanner": {
"color": "#336356",
"theme": "dark"
},
"repository": {
"type": "git",
"url": "https://github.com/casm-lang/casm-lang.plugin.vscode.git"
},
"bugs": {
"url": "https://github.com/casm-lang/casm"
},
"engines": {
"vscode": "^1.25.0"
},
"dependencies": {
"vscode": "^1.1.18",
"vscode-languageclient": "^4.2.1"
},
"devDependencies": {
"@types/mocha": "^2.2.32",
"@types/node": "^6.14.1",
"mocha": "^5.2.0",
"rimraf": "^2.6.1",
"typescript": "^2.7.2"
},
"main": "./obj/src/extension",
"categories": [
"Programming Languages",
"Linters",
"Snippets"
],
"keywords": [
"casm",
"casm-lang",
"CASM",
"LSP"
],
"preview": true,
"activationEvents": [
"onLanguage:casm",
"onCommand:casm.language.mode"
],
"contributes": {
"languages": [
{
"id": "casm",
"aliases": [
"CASM",
"casm",
"casm-lang"
],
"extensions": [
".casm"
],
"configuration": "./etc/language-configuration.json"
}
],
"snippets": [
{
"language": "casm",
"path": "./etc/language-snippets.json"
}
],
"commands": [
{
"command": "casm.language.mode",
"title": "CASM Language Mode",
"description": "Activates CASM specification language support though the `casmd` tool.",
"category": "CASM"
}
],
"configuration": {
"type": "object",
"title": "casmd process configuration",
"properties": {
"casmd.path": {
"type": "string",
"default": "casmd",
"description": "path to 'casmd' executable, e.g.: /usr/bin/casmd"
},
"casmd.arguments": {
"type": "array",
"items": {
"type": "string"
},
"default": [
"lsp",
"--stdio"
],
"description": "arguments for casmd executable"
}
}
}
},
"scripts": {
"compile": "tsc -p ./",
"watch": "tsc -w -p ./",
"update-vscode": "node ./node_modules/vscode/bin/install",
"postinstall": "node ./node_modules/vscode/bin/install",
"vscode:prepublish": "tsc -p ./"
}
}