-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2 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
{
"name": "tmf-ecore-editor",
"displayName": "TMF Ecore Editor",
"description": "Visual editor for Eclipse Ecore models - for use with @tripsnek/tmf library",
"repository": {
"type": "git",
"url": "https://github.com/tripsnek/tmf-ecore-editor"
},
"icon": "media/icon.png",
"version": "1.0.0",
"publisher": "tripsnek",
"engines": {
"vscode": "^1.74.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCustomEditor:tmf-ecore-editor.ecoreEditor"
],
"main": "./out/extension.js",
"contributes": {
"customEditors": [
{
"viewType": "tmf-ecore-editor.ecoreEditor",
"displayName": "TMF Ecore Editor",
"selector": [
{
"filenamePattern": "*.ecore"
}
],
"priority": "option",
"supportsMultipleEditorsPerDocument": false
}
],
"commands": [
{
"command": "tmf-ecore-editor.openEditor",
"title": "Open Ecore Editor",
"category": "TMF"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "webpack",
"watch": "webpack --watch",
"pretest": "npm run compile",
"test": "node ./out/test/runTest.js",
"lint": "eslint src --ext ts"
},
"keywords": [
"ecore",
"modeling",
"emf",
"tmf",
"model-driven",
"eclipse",
"visual-editor"
],
"author": "Daniel Tuohy",
"license": "MIT",
"homepage": "https://github.com/tripsnek/tmf-ecore-editor#readme",
"bugs": {
"url": "https://github.com/tripsnek/tmf-ecore-editor/issues"
},
"devDependencies": {
"@types/node": "^18.0.0",
"@types/vscode": "^1.74.0",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"eslint": "^8.26.0",
"prettier": "^3.6.2",
"ts-loader": "^9.4.2",
"typescript": "^4.9.3",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.0"
},
"dependencies": {
"@tripsnek/tmf": "^1.2.0",
"@vscode/codicons": "^0.0.33",
"uuid": "^11.1.0"
}
}