-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
131 lines (131 loc) · 3.19 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
{
"name": "ebo-script",
"displayName": "ebo-script",
"publisher": "pachecot",
"repository": {
"url": "https://github.com/pachecot/ebo-script.git"
},
"description": "SE EBO Script Programming Support",
"version": "0.13.6",
"engines": {
"vscode": "^1.64.0"
},
"categories": [
"Other"
],
"activationEvents": [
"workspaceContains:**/*.ebosp",
"workspaceContains:**/*.ebosf",
"onStartupFinished"
],
"main": "./out/extension.js",
"contributes": {
"capabilities": {
"documentFormattingProvider": "true"
},
"commands": [
{
"command": "ebo-script.clean-declarations",
"title": "ebo-script: Clean Declarations",
"enablement": "editorLangId == ebo-script"
},
{
"command": "ebo-script.compact_declarations",
"title": "ebo-script: Compact Declarations",
"enablement": "editorLangId == ebo-script"
},
{
"command": "ebo-script.expand_declarations",
"title": "ebo-script: Expand Declarations",
"enablement": "editorLangId == ebo-script"
},
{
"command": "ebo-script.show_files",
"title": "ebo-script: List Files",
"enablement": "editorLangId == ebo-script"
},
{
"command": "ebo-script.generate_state",
"title": "ebo-script: Generate State Diagrams",
"enablement": "editorLangId == ebo-script"
},
{
"command": "ebo-script.ebo_create_stateDiagram",
"title": "ebo-script: Create State Diagram",
"enablement": "editorLangId == ebo-script"
},
{
"command": "ebo-script.show_variables",
"title": "ebo-script: List Variables",
"enablement": "editorLangId == ebo-script"
}
],
"jsonValidation": [
{
"fileMatch": "ebo.json",
"url": "./schemas/ebo-schema.json"
}
],
"languages": [
{
"id": "ebo-script",
"extensions": [
".ebosp",
".ebosf"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "ebo-script",
"scopeName": "source.ebo-script",
"path": "./syntaxes/ebo-script.tmGrammar.json"
}
],
"snippets": [
{
"language": "ebo-script",
"path": "./snippets/ebo-script.code-snippets"
}
],
"configuration": {
"title": "ebo-script",
"properties": {
"ebo-script.declarationMaxLineLength": {
"type": "integer",
"default": 85,
"description": "Specifies the max line length of declarataions when conbined on a single line."
},
"ebo-script.cleanDeclarationsCompact": {
"type": "boolean",
"default": false,
"description": "Specifies to compact declarataions when cleaning."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint src --ext ts",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"test": "node ./out/test/runTest.js",
"preunittest": "npm run compile && npm run lint",
"unittest": "mocha ./out/unittest",
"package": "vsce package"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.1",
"@types/node": "^20.3.1",
"@types/vscode": "^1.64.0",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"eslint": "^8.9.0",
"glob": "^10.2.7",
"mocha": "^10.2.0",
"vscode-test": "^1.6.1"
}
}