-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.65 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.65 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
{
"name": "text2chart",
"displayName": "Text2Chart",
"publisher": "SoloThought",
"description": "Generate diagrams like FlowChart from simple text",
"version": "1.1.1",
"icon": "media/Text2Chart_logo.png",
"repository": {
"type": "git",
"url": "https://github.com/solothought/text2chart-vs-ext"
},
"author": "Amit Gupta (https://solothought.com)",
"license": "MIT",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/solothought/"
}
],
"engines": {
"vscode": "^1.95.0"
},
"categories": [
"Visualization"
],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "text2chart.previewFlowChart",
"title": "Preview Text2Chart Flow"
}
],
"languages": [
{
"id": "stflow",
"aliases": ["Text2Chart Flow"],
"extensions": [".stflow"],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "stflow",
"scopeName": "source.stflow",
"path": "./syntaxes/stflow.tmLanguage.json"
}
],
"views": {
"explorer": [
{
"id": "stflowPreview",
"name": "Text2Chart Flow Preview"
}
]
},
"menus": {
"editor/context": [
{
"command": "text2chart.previewFlowChart",
"when": "resourceLangId == stflow",
"group": "navigation"
}
]
}
},
"scripts": {
"test": "vscode-test",
"build":"vsce package"
},
"devDependencies": {
"@types/vscode": "^1.95.0",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.4.1"
}
}