-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.64 KB
/
Copy pathpackage.json
File metadata and controls
105 lines (105 loc) · 2.64 KB
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
{
"name": "collagraph-lsp",
"displayName": "Collagraph LSP",
"description": "Language Server Protocol support for Collagraph (.cgx) files",
"version": "0.1.1",
"publisher": "collagraph",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/collagraph/collagraph-lsp"
},
"engines": {
"vscode": "^1.75.0"
},
"categories": [
"Programming Languages",
"Linters"
],
"keywords": [
"collagraph",
"cgx",
"lsp",
"python",
"ruff"
],
"activationEvents": [
"onLanguage:collagraph"
],
"main": "./out/extension.js",
"contributes": {
"languages": [
{
"id": "collagraph",
"aliases": [
"Collagraph",
"collagraph",
"cgx"
],
"extensions": [
".cgx"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "collagraph",
"scopeName": "source.collagraph",
"path": "./syntaxes/collagraph.tmLanguage.json"
}
],
"configuration": {
"type": "object",
"title": "Collagraph LSP",
"properties": {
"collagraph-lsp.enable": {
"type": "boolean",
"default": true,
"description": "Enable/disable the Collagraph LSP server"
},
"collagraph-lsp.command": {
"type": "string",
"default": "collagraph-lsp",
"description": "Command to start the Collagraph LSP server. Modify this if the server is not in your PATH."
},
"collagraph-lsp.trace.server": {
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "Traces the communication between VS Code and the language server."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "npm run check-types && node esbuild.js",
"watch": "npm-run-all -p watch:*",
"watch:esbuild": "node esbuild.js --watch",
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
"package": "npm run check-types && node esbuild.js --production",
"check-types": "tsc --noEmit",
"lint": "eslint src --ext ts",
"vsce:package": "vsce package",
"publish": "vsce publish"
},
"devDependencies": {
"@eslint/js": "*",
"@types/node": "*",
"@types/vscode": "*",
"@typescript-eslint/eslint-plugin": "*",
"@typescript-eslint/parser": "*",
"@vscode/vsce": "*",
"esbuild": "*",
"eslint": "*",
"typescript": "*"
},
"dependencies": {
"vscode-languageclient": "^9.0.1"
}
}