-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
154 lines (154 loc) · 3.43 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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
{
"name": "fusio",
"version": "1.0.0",
"publisher": "Fusio",
"license": "MIT",
"displayName": "fusio",
"description": "Fusio is an open source API management platform which helps to create innovative API solutions",
"icon": "media/fusio_128px.png",
"categories": [
"Other"
],
"keywords": [
"API",
"Development",
"REST",
"Client"
],
"preview": false,
"repository": "https://github.com/apioo/fusio-tools-vscode",
"engines": {
"vscode": "^1.57.0"
},
"activationEvents": [
"onCommand:fusio.login",
"onCommand:fusio.logout",
"onCommand:fusio.action.open",
"onCommand:fusio.action.save",
"onCommand:fusio.action.execute",
"onCommand:fusio.schema.open",
"onCommand:fusio.connection.open",
"onView:actionView",
"onView:schemaView",
"onView:connectionView"
],
"main": "./dist/extension.js",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "fusio",
"title": "Fusio",
"icon": "media/fusio_32px.png"
}
]
},
"commands": [
{
"command": "fusio.login",
"title": "Login"
},
{
"command": "fusio.logout",
"title": "Logout"
},
{
"command": "fusio.action.open",
"title": "Action Open"
},
{
"command": "fusio.action.save",
"title": "Action Save"
},
{
"command": "fusio.action.execute",
"title": "Action Execute"
},
{
"command": "fusio.schema.open",
"title": "Schema Open"
},
{
"command": "fusio.connection.open",
"title": "Connection Open"
}
],
"views": {
"fusio": [
{
"id": "actionView",
"name": "Actions"
},
{
"id": "schemaView",
"name": "Schemas"
},
{
"id": "connectionView",
"name": "Connections"
}
]
},
"viewsWelcome": [
{
"view": "actionView",
"contents": "In order to load actions you need to connect to a Fusio instance. Please use the login command to authenticate.\n[Login](command:fusio.login)"
}
],
"configuration": {
"title": "Fusio",
"properties": {
"fusio.base_url": {
"title": "Base url",
"description": "Endpoint url of your Fusion instance",
"type": "string",
"default": ""
},
"fusio.client_id": {
"title": "Client Id",
"description": "The Fusio client id, this can be either your username or app client id",
"type": "string",
"default": ""
},
"fusio.client_secret": {
"title": "Client Secret",
"description": "The Fusio client secret, this can be either your password or app client secret",
"type": "string",
"default": ""
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"test-compile": "tsc -p ./",
"test-watch": "tsc -watch -p ./",
"pretest": "npm run test-compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js",
"deploy": "vsce publish"
},
"devDependencies": {
"@types/js-yaml": "^4.0.1",
"@types/mocha": "^10.0.10",
"@types/node": "18.x",
"@types/vscode": "^1.57.0",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"@vscode/vsce": "^3.2.1",
"eslint": "^9.16.0",
"glob": "^11.0.0",
"mocha": "^11.0.1",
"ts-loader": "^9.2.2",
"typescript": "^5.7.2",
"vscode-test": "^1.5.2",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.0"
},
"dependencies": {
"fusio-sdk": "^5.1.0"
}
}