-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 942 Bytes
/
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
{
"name": "example-plugin",
"author": {
"name": "Your Author name.surname",
"email": "Your email"
},
"version": "Your semver version here e.g. 1.0.0",
"description": "Your plugin description here",
"keywords": [
"leapp-plugin",
"Add other tags here..."
],
"leappPlugin": {
"supportedOS": [
"mac", "windows", "linux"
],
"supportedSessions": [
"awsIamRoleFederated",
"awsIamRoleChained",
"awsSsoRole",
"awsIamUser",
"aws",
"azure"
]
},
"scripts": {
"build": "webpack --config webpack.config.js"
},
"files": [
"plugin.js",
"icon.png"
],
"license": "MPL",
"dependencies": {
"@noovolari/leapp-core": "0.1.131"
},
"devDependencies": {
"copy-webpack-plugin": "^11.0.0",
"path-browserify": "^1.0.1",
"ts-loader": "^9.3.1",
"typescript": "^4.7.4",
"webpack": "^5.74.0",
"webpack-cli": "^5.0.1"
}
}