-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 3.03 KB
/
package.json
File metadata and controls
126 lines (126 loc) · 3.03 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
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
{
"name": "openfluid",
"displayName": "OpenFLUID",
"description": "OpenFLUID extension for Visual Studio Code",
"version": "0.6.0",
"repository": {
"type": "git",
"url": "https://github.com/OpenFLUID/openfluid-vscode-extension"
},
"author": {
"name": "Jean-Christophe Fabre",
"email" : "jean-christophe.fabre@inrae.fr"
},
"publisher": "INRAE",
"keywords": [
"OpenFLUID",
"modelling",
"simulation",
"scientific",
"spatial",
"landscapes"
],
"categories": [
"Other"
],
"license": "MIT",
"icon": "ressources/openfluid_icon_512.png",
"engines": {
"vscode": "^1.60.0"
},
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"contributes": {
"configuration": {
"title": "OpenFLUID",
"properties": {
"openfluid.paths.installPrefix": {
"type": "string",
"description": "Path to OpenFLUID installation (uses default if empty)"
}
}
},
"commands": [
{
"command": "openfluid.getVersion",
"title": "Show version",
"category": "OpenFLUID"
},
{
"command": "openfluid.createSimulator",
"title": "Create new simulator",
"category": "OpenFLUID"
},
{
"command": "openfluid.createObserver",
"title": "Create new observer",
"category": "OpenFLUID"
},
{
"command": "openfluid.createBuilderext",
"title": "Create new builder-extension",
"category": "OpenFLUID"
},
{
"command": "openfluid.configureWare",
"title": "Configure ware",
"category": "OpenFLUID"
},
{
"command": "openfluid.buildWare",
"title": "Build ware",
"category": "OpenFLUID"
},
{
"command": "openfluid.createProject",
"title": "Create new project",
"category": "OpenFLUID"
},
{
"command": "openfluid.runProject",
"title": "Run project",
"category": "OpenFLUID"
}
],
"keybindings": [
{
"command": "openfluid.configureWare",
"key": "ctrl+K ctrl+C",
"mac": "cmd+K cmd+C"
},
{
"command": "openfluid.buildWare",
"key": "ctrl+K ctrl+B",
"mac": "cmd+K cmd+B"
},
{
"command": "openfluid.runProject",
"key": "ctrl+K ctrl+R",
"mac": "cmd+K cmd+R"
}
]
},
"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.60.0",
"@types/glob": "^7.1.4",
"@types/mocha": "^9.0.0",
"@types/node": "14.x",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"eslint": "^7.32.0",
"glob": "^7.1.7",
"mocha": "^9.1.1",
"typescript": "^4.4.3",
"@vscode/test-electron": "^1.6.2"
}
}