-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 3.33 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
{
"name": "publicodes-language-server",
"description": "Publicodes language toolkit",
"displayName": "Publicodes language",
"icon": "icons/publicodes-logo.png",
"author": "Emile Rolley <emile.rolley@tuta.io>",
"license": "MIT",
"version": "0.8.5",
"publisher": "EmileRolley",
"repository": {
"type": "git",
"url": "https://github.com/EmileRolley/publicodes-language-server.git"
},
"categories": [],
"keywords": [
"publicodes",
"language server",
"vscode"
],
"engines": {
"vscode": "^1.75.0"
},
"main": "./client/out/extension",
"scripts": {
"deploy": "vsce publish --yarn",
"compile": "tsc -b server && tsc -b client && tsc-alias -p server/tsconfig.json",
"dev": "concurrently \"tsc -b -w\" \"tsc-alias -p server/tsconfig.json -w\"",
"lint": "eslint ./client/src ./server/src --ext .ts,.tsx",
"postinstall": "yarn install --cwd client && yarn install --cwd server",
"test": "yarn run compile && sh ./scripts/e2e.sh",
"format": "prettier --write .",
"postversion": "git push --tags",
"format:check": "prettier --check . server client",
"vscode:prepublish": "yarn run compile"
},
"activationEvents": [
"onLanguage:publicodes"
],
"contributes": {
"languages": [
{
"id": "publicodes",
"aliases": [
"Publicodes"
],
"extensions": [
".publicodes",
".publicodes.yaml",
".publicodes.yml"
],
"configuration": "./language-configuration.json",
"icon": {
"light": "./icons/publicodes-logo.png",
"dark": "./icons/publicodes-logo.png"
}
}
],
"grammars": [
{
"language": "publicodes",
"scopeName": "source.publicodes",
"path": "./syntaxes/publicodes.tmLanguage.json"
}
],
"configurationDefaults": {
"[publicodes]": {
"editor.insertSpaces": true,
"editor.tabSize": 2,
"editor.autoIndent": "advanced",
"editor.quickSuggestions": {
"other": "on",
"comments": "off",
"strings": "on"
},
"editor.wordBasedSuggestions": "off",
"editor.semanticHighlight.enable": true,
"diffEditor.ignoreTrimWhitespace": false
}
},
"configuration": {
"type": "object",
"title": "Publicodes",
"properties": {
"languageServerExample.maxNumberOfProblems": {
"scope": "resource",
"type": "number",
"default": 100,
"description": "Controls the maximum number of problems produced by the server."
},
"languageServerExample.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/mocha": "^9.1.0",
"@types/node": "^16.11.7",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"@vscode/vsce": "^2.26.1",
"concurrently": "^8.2.2",
"eslint": "^8.35.0",
"mocha": "^9.2.1",
"prettier": "^3.3.0",
"tsc": "^2.0.4",
"tsc-alias": "^1.8.8",
"tsup": "^8.0.2",
"typescript": "^5.0.2"
}
}