-
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.46 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.46 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": "xaf-modeleditor",
"displayName": "XAF Model Editor Integration",
"description": "Integrates DevExpress XAF Model Editor with VS Code. Right-click or double-click Model.xafml to build and launch the correct Model Editor version.",
"version": "0.0.20",
"publisher": "DvisiousNeed2CodeAB",
"engines": {
"vscode": ">=1.70.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:xaf-modeleditor.openModelEditor",
"onLanguage:xml"
],
"main": "./out/extension.js",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "xafModelFilesContainer",
"title": "XAF Model Files",
"icon": "resources/xaf.svg"
}
]
},
"views": {
"xafModelFilesContainer": [
{
"id": "xafModelFiles",
"name": "XAF Model Files"
}
]
},
"commands": [
{
"command": "xaf-modeleditor.openModelEditor",
"title": "Open with XAF Model Editor"
},
{
"command": "xaf-modeleditor.resetStartDialog",
"title": "XAF Model Editor: Reset 'Don't show again' dialog"
},
{
"command": "xaf-modeleditor.refreshModelTree",
"title": "Refresh XAF Model Files Tree"
}
],
"menus": {
"explorer/context": [
{
"command": "xaf-modeleditor.openModelEditor",
"when": "resourceExtname == .xafml",
"group": "navigation@10"
}
]
},
"configuration": {
"type": "object",
"title": "XAF Model Editor",
"properties": {
"modelEditorPath": {
"type": "string",
"default": "",
"description": "Optional: Override the default path to the DevExpress Model Editor executable. If set, this path will be used instead of the auto-detected one. Example: D:/DevExpress/Tools/ModelEditor/DevExpress.ExpressApp.ModelEditor.v24.2.exe"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"package": "vsce package --no-dependencies",
"publish": "vsce publish --no-dependencies"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/vscode": "^1.70.0",
"@vscode/vsce": "2.24.0",
"typescript": "^5.0.0",
"tslint": "^6.1.3"
},
"dependencies": {},
"repository": {
"type": "git",
"url": "https://github.com/Need2Code-AB/vscode.extensions.xaf.modeleditor.git"
}
}