-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.68 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.68 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
{
"package_version": 2,
"version": "1.0.0",
"name": "edgegap-extension",
"description": "i18n:edgegap-extension.description",
"main": "./dist/main.js",
"dependencies": {
"axios": "^1.1.3",
"fs-extra": "^10.0.0",
"open": "^8.4.0"
},
"devDependencies": {
"@types/fs-extra": "^9.0.5",
"@types/node": "^16.0.1",
"typescript": "^4.3.4"
},
"panels": {
"default": {
"title": "Edgegap Panel",
"type": "dockable",
"main": "dist/panels/default",
"size": {
"min-width": 600,
"min-height": 600,
"width": 600,
"height": 800
}
}
},
"contributions": {
"menu": [
{
"path": "i18n:menu.extension/Edgegap",
"label": "i18n:edgegap-extension.open_panel",
"message": "open-panel"
},
{
"path": "i18n:menu.extension/Edgegap",
"label": "i18n:edgegap-extension.open_site",
"message": "open-site"
}
],
"messages": {
"open-panel": {
"methods": [
"openPanel"
]
},
"open-site": {
"methods": [
"openSite"
]
}
},
"asset-db": {
"mount": {
"path": "./assets",
"readonly": true
}
}
},
"author": "y3v4d",
"editor": ">=3.6.1",
"scripts": {
"build": "tsc -b",
"watch": "tsc -w"
}
}