-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
130 lines (130 loc) · 3.21 KB
/
package.json
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
127
128
129
130
{
"name": "ssp-applet",
"xuiConfig": {
"name": "ssp-applet",
"id": "APL-12345678",
"icon": "xui/src/ssp-applet.png",
"met_description": "Hello World applet for extending the CloudBolt SSP and HUI",
"met_label": "SSP Applet Hello World",
"met_is_applet": true,
"met_entry_point": "static/main.es.js",
"met_maximum_version_required": "",
"met_minimum_version_required": "2023.5.1",
"met_required_ui_extensions": [
{
"name": "ssp",
"minimum_version": "2023.5.1",
"maximum_version": ""
}
],
"met_targets": {
"ssp": {
"fullPage": [
{
"slug": "my-url"
}
],
"resourcesDetailsPaneDiskList": [
"preTable",
"postTable",
"expandedCellFoot"
],
"resourcesDetailsPaneNetworks": [
"preTable",
"postTable",
"expandedCellHead"
],
"resourceDetailsDiskList": [
"preTable",
"postTable",
"expandedCellFoot"
],
"resourceDetailsNetworks": [
"preTable",
"postTable",
"expandedCellHead"
],
"resourceDetailsTabs": [
{
"resourceTypes": [
"service",
"server"
],
"label": "Additional Info"
}
],
"catalog": [
"headerLoggedIn"
],
"all": [
"preNavItems"
]
},
"hui": {
"fullPage": [
{
"label": "Demo Applet",
"position": [
"post-nav-resources"
]
}
],
"resourceDetailsTabs": [
{
"resourceTypes": [
"service",
"server"
],
"label": "Custom Applet",
"position": [
"post-jobs-tab"
]
}
]
}
}
},
"version": "0.1.0",
"description": "Template for creating a CloudBolt CB applet",
"type": "module",
"files": [
"dist"
],
"module": "dist/main.es.js",
"exports": {
".": {
"import": "./dist/main.es.js"
}
},
"scripts": {
"build": "vite build",
"build:dev": "vite build --watch --mode development",
"post-build": "xui",
"check:format": "prettier --check .",
"check:lint": "eslint --ext .js,.vue --ignore-path .gitignore src",
"format": "prettier . --write",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore --fix src",
"test": "echo \"Error: no test runner specified. CloudBolt suggests using vitest.\" && exit 1"
},
"dependencies": {
"camelcase": "^7.0.1",
"vuetify": "^3.4.7"
},
"devDependencies": {
"@cloudbolt/js-sdk": "^0.6.2",
"@cloudbolt/xui-packager": "^1.1.2",
"@rollup/plugin-node-resolve": "^15.0.2",
"@vitejs/plugin-vue": "^4.2.3",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-vue": "^9.9.0",
"eslint-plugin-vue-scoped-css": "^2.4.0",
"eslint-plugin-vuejs-accessibility": "^2.1.0",
"load-pkg": "^4.0.0",
"prettier": "^2.8.8",
"sass": "^1.62.1",
"vite": "^4.3.9",
"vite-plugin-vuetify": "^1.0.2",
"vue": "^3.3.4"
}
}