forked from OpenCML/OpenCML-Ext
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.59 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.59 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
{
"name": "open-cml-extension",
"displayName": "OpenCML-Ext",
"description": "OpenCML Extension for VSCode",
"version": "0.2.0",
"publisher": "Kogler7",
"icon": "assets/icon.jpg",
"type": "module",
"scripts": {
"compile": "tsc -b",
"watch": "tsc -b -w",
"pub": "node ./publish.js"
},
"engines": {
"vscode": "^1.80.0"
},
"categories": [
"Programming Languages"
],
"repository": {
"type": "git",
"url": "https://github.com/Kogler7/OpenCML-Ext.git"
},
"main": "./client/out/extension",
"contributes": {
"configuration": {
"type": "object",
"title": "Example configuration",
"properties": {
"opencmlLanguageServer.maxNumberOfProblems": {
"scope": "resource",
"type": "number",
"default": 100,
"description": "Controls the maximum number of problems produced by the server."
},
"opencmlLanguageServer.trace.server": {
"scope": "window",
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "Traces the communication between VS Code and the language server."
}
}
},
"languages": [
{
"id": "cml",
"aliases": [
"OpenCML",
"cml"
],
"extensions": [
".cml"
],
"configuration": "./language-configuration.json"
},
{
"id": "psl",
"aliases": [
"Photonic Simulation Language",
"psl"
],
"extensions": [
".psl"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "cml",
"scopeName": "source.cml",
"path": "./syntaxes/cml.tmLanguage.json"
},
{
"language": "psl",
"scopeName": "source.psl",
"path": "./syntaxes/cml.tmLanguage.json"
}
]
},
"devDependencies": {
"@types/jest": "^29.5.12",
"typescript": "^5.4.5"
}
}