-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
136 lines (136 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "sdml",
"displayName": "SDML Language Extension",
"description": "Extension for Simple Domain Modeling Language (SDML)",
"publisher": "SimonJohnston",
"version": "0.2.1",
"repository": {
"type": "git",
"url": "https://github.com/sdm-lang/sdml-vscode"
},
"engines": {
"vscode": "^1.83.0"
},
"keywords": [
"Modeling",
"Domain Modeling"
],
"categories": [
"Snippets",
"Programming Languages"
],
"activationEvents": [],
"main": "./out/extension.js",
"contributes": {
"languages": [
{
"id": "sdml",
"aliases": [
"SDML",
"sdml"
],
"extensions": [
".sdml",
".sdm"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "sdml",
"scopeName": "source.sdml",
"path": "./syntaxes/sdml.tmLanguage"
}
],
"snippets": [
{
"language": "sdml",
"path": "./snippets/snippets.code-snippets"
}
],
"commands": [
{
"command": "sdml.drawConceptDiagram",
"title": "Draw Concept Diagram"
},
{
"command": "sdml.drawEntityDiagram",
"title": "Draw Entity-Relationship Diagram"
},
{
"command": "sdml.drawClassDiagram",
"title": "Draw UML Class Diagram"
}
],
"menus": {
"commandPalette": [
{
"command": "sdml.drawConceptDiagram",
"when": "editorLangId == sdml"
},
{
"command": "sdml.drawEntityDiagram",
"when": "editorLangId == sdml"
},
{
"command": "sdml.drawClassDiagram",
"when": "editorLangId == sdml"
}
]
},
"configuration": [
{
"id": "sdml.configuration",
"title": "SDML",
"properties": {
"sdml.command.executable": {
"type": "string",
"default": "sdml",
"description": "The name of the SDML command-line tool executable."
},
"sdml.command.terminalName": {
"type": "string",
"default": "SDML Command-Line",
"description": "The name of the terminal used to run the SDML command-line tool."
},
"sdml.drawing.defaultFormat": {
"type": "string",
"enum": [
"jpg",
"png",
"svg"
],
"enumDescriptions": [
"JPEG",
"PNG, a better JPEG",
"SVG, a scalable form, great for the web"
],
"default": "png",
"description": "Complete functions with their parameter signature."
}
}
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/vscode": "^1.83.0",
"@types/mocha": "^10.0.2",
"@types/node": "18.x",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"eslint": "^8.50.0",
"glob": "^10.3.3",
"mocha": "^10.2.0",
"typescript": "^5.2.2",
"@vscode/test-electron": "^2.3.4"
}
}