This repository has been archived by the owner on May 10, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
125 lines (125 loc) · 3.88 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
{
"name": "@asyncapi/vscode-extension",
"version": "0.1.0",
"description": "AsyncAPI extension for Visual Studio Code",
"keywords": [
"asyncapi"
],
"bugs": {
"url": "https://github.com/asyncapi/vscode-extension/issues"
},
"repository": "https://github.com/asyncapi/vscode-extension",
"license": "Apache-2.0",
"main": "./out/src/extension",
"scripts": {
"bump:version": "echo 'No automated version bump as we do not release this package yet'",
"check": "npm run check:eslint && npm run check:prettier && npm run check:tsc && npm run check:tslint",
"check:eslint": "eslint --config .eslintrc.json .",
"check:prettier": "prettier --check \"**/*.*\"",
"check:tsc": "tsc --project . --noEmit",
"check:tslint": "tslint --project .",
"compile": "tsc -p ./",
"fix": "npm run fix:eslint && npm run fix:tslint && npm run fix:prettier",
"fix:eslint": "eslint --fix --config .eslintrc.json .",
"fix:prettier": "prettier --write \"**/*.*\"",
"fix:tslint": "tslint --fix --project .",
"generate:assets": "echo 'No assets to generate yet'",
"postinstall": "node ./node_modules/vscode/bin/install",
"lint": "npm run check",
"release": "echo 'This package is not yet released'",
"test": "npm run compile && node ./node_modules/vscode/bin/test",
"vscode:prepublish": "npm run compile",
"watch": "tsc -watch -p ./"
},
"lint-staged": {
"**/*.*": [
"eslint",
"prettier --write",
"git add"
]
},
"dependencies": {
"@asyncapi/generator": "^1.6.15"
},
"devDependencies": {
"@types/jquery": "^3.3.9",
"@types/mocha": "^5.2.5",
"@types/node": "^11.11.0",
"eslint": "^5.15.1",
"husky": "^3.0.9",
"lint-staged": "^9.4.2",
"mocha": "^6.1.4",
"prettier": "^1.18.2",
"prettier-plugin-packagejson": "^2.0.1",
"tslint": "^5.13.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.0.3",
"vscode": "^1.1.37"
},
"engines": {
"vscode": "^1.30.0"
},
"activationEvents": [
"onCommand:asyncapi-preview.openPreviewToTheSide"
],
"categories": [
"Other"
],
"contributes": {
"commands": [
{
"command": "asyncapi-preview.openPreviewToTheSide",
"title": "Open Preview to the Side",
"category": "AsyncAPI",
"icon": {
"light": "./media/preview-right-light.svg",
"dark": "./media/preview-right-dark.svg"
}
},
{
"command": "asyncapi-preview.toggleLiveUpdate",
"title": "Toggle Live Preview Update",
"category": "AsyncAPI"
}
],
"menus": {
"editor/context": [
{
"command": "asyncapi-preview.openPreviewToTheSide",
"when": "editorLangId == yaml || editorLangId == json",
"group": "asyncapi-preview"
}
],
"editor/title": [
{
"command": "asyncapi-preview.openPreviewToTheSide",
"when": "editorLangId == yaml || editorLangId == json",
"group": "navigation"
}
]
},
"configuration": {
"type": "object",
"title": "AsyncAPI Preview",
"properties": {
"asyncapi-preview.liveUpdate": {
"description": "Re-render the preview as the contents of the source changes, without requiring the source buffer to be saved. If disabled, the preview is re-rendered only when the buffer is saved to disk.",
"default": true,
"type": "boolean"
},
"asyncapi-preview.singlePreview": {
"description": "Open Only One Preview.",
"default": true,
"type": "boolean"
},
"asyncapi-preview.automaticallyShowPreviewOfAsyncApiBeingEdited": {
"description": "Automatically show preview of AsyncAPI being edited.",
"default": true,
"type": "boolean"
}
}
}
},
"displayName": "AsyncAPI Preview",
"publisher": "asyncapi"
}