-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.4 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.4 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
{
"name": "thrd-lang",
"displayName": "THRD Lang",
"description": "",
"version": "0.0.1",
"engines": {
"vscode": "^1.79.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "thrd",
"aliases": [
"Typed Human-Readable Data",
"thrd"
],
"extensions": [
".thrd",
".thrdlib",
".thrdspec"
],
"icon": {
"dark": "./assets/thrd-lang-icon.png",
"light": "./assets/thrd-lang-icon.png"
},
"configuration": "./language-configuration.json"
},
{
"id": "thrdtypes",
"aliases": [
"THRD Hover"
],
"extensions": [],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "thrd",
"scopeName": "source.thrd",
"path": "./syntaxes/thrd.tmLanguage.json"
},
{
"language": "thrdtypes",
"scopeName": "source.thrdtypes",
"path": "./syntaxes/thrdtypes.tmLanguage.json"
}
],
"configuration": {
"type": "object",
"title": "THRD Language",
"properties": {
"thrdLanguageServer.maxNumberOfProblems": {
"scope": "resource",
"type": "number",
"default": 100,
"description": "Controls the maximum number of problems produced by the server."
},
"thrdLanguageServer.trace.server": {
"scope": "window",
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "Traces the communication between VS Code and the language server."
}
}
}
},
"main": "./client/out/extension",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -b",
"watch": "tsc -b -w",
"lint": "eslint ./client/src ./server/src --ext .ts,.tsx",
"postinstall": "cd client && npm install && cd ../server && npm install && cd ..",
"test": "sh ./scripts/e2e.sh"
},
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/node": "^20.2.5",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"eslint": "^8.42.0",
"eslint-config-standard-with-typescript": "^35.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"typescript": "^5.1.3"
}
}