-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
57 lines (57 loc) · 1.38 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
{
"name": "openapi-preview",
"displayName": "OpenAPI Preview",
"description": "Preview OpenAPI Docs",
"publisher": "zoellner",
"author": {
"name": "Andreas Zoellner",
"url": "https://github.com/zoellner"
},
"sponsor": {
"url": "https://github.com/sponsors/zoellner"
},
"repository": {
"type": "git",
"url": "https://github.com/zoellner/openapi-preview.git"
},
"bugs": "https://github.com/zoellner/openapi-preview/issues",
"license": "MIT",
"version": "2.3.0",
"engines": {
"vscode": "^1.73.1"
},
"categories": [
"Other"
],
"main": "./out/extension.js",
"activationEvents": [
"onCommand:openapiPreview.open"
],
"contributes": {
"commands": [
{
"command": "openapiPreview.open",
"title": "OpenAPI Preview"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint .",
"watch": "tsc -watch -p ./",
"postinstall": "cp node_modules/@stoplight/elements/{web-components.min.js,styles.min.css} ./media"
},
"devDependencies": {
"@stoplight/elements": "^8.3.3",
"@types/node": "^20.14.10",
"@types/vscode": "^1.73.1",
"@types/vscode-webview": "^1.57.0",
"eslint": "^9.6.0",
"typescript": "^5.5.3",
"typescript-eslint": "^8.0.0-alpha.41"
},
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^9.0.9"
}
}