-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
182 lines (182 loc) · 4.45 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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
{
"name": "confluence-markup",
"displayName": "Confluence markup",
"version": "1.0.4",
"publisher": "denco",
"description": "Confluence markup language support for Visual Studio Code",
"keywords": [
"syntax",
"language",
"confluence",
"wiki",
"markup"
],
"icon": "media/logo/confluence-markup.png",
"author": {
"name": "denco"
},
"categories": [
"Programming Languages",
"Snippets"
],
"preview": false,
"repository": {
"type": "git",
"url": "https://github.com/denco/vscode-confluence-markup"
},
"bugs": {
"url": "https://github.com/denco/vscode-confluence-markup/issues"
},
"license": "MIT",
"homepage": "https://github.com/denco/vscode-confluence-markup/blob/master/README.md",
"engines": {
"vscode": "^1.84.0"
},
"activationEvents": [],
"main": "./out/extension",
"contributes": {
"configuration": {
"title": "Confluence Markup",
"properties": {
"confluenceMarkup.monospaceFont": {
"type": "string",
"default": "Menlo, Monaco, Consolas, monospace",
"description": "This is the value passed to the font-family CSS attribute for code in the preview. Provide it with a monospace font of your choice!"
}
}
},
"languages": [
{
"id": "confluence",
"aliases": [
"Confluence",
"markup",
"wiki",
"jira",
"Confluence Markup"
],
"extensions": [
".confluence",
".wiki",
".jira",
".markup"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "confluence",
"scopeName": "text.html.confluence",
"path": "./syntaxes/confluence-markup.tmLanguage"
}
],
"snippets": [
{
"language": "confluence",
"path": "./snippets/confluence-markup.json"
}
],
"keybindings": [
{
"command": "confluence.showPreview",
"key": "ctrl+shift+v",
"mac": "cmd+shift+v",
"when": "editorLangId == confluence"
},
{
"command": "confluence.showPreviewToSide",
"key": "ctrl+k v",
"mac": "cmd+k v",
"when": "editorLangId == confluence"
}
],
"commands": [
{
"command": "confluence.showPreview",
"title": "Open Preview",
"category": "Confluence"
},
{
"command": "confluence.showPreviewToSide",
"title": "Open Preview to the Side",
"category": "Confluence"
}
],
"menus": {
"editor/title": [
{
"command": "confluence.showPreview",
"when": "editorLangId == confluence"
},
{
"command": "confluence.showPreviewToSide",
"when": "editorLangId == confluence"
}
]
}
},
"scripts": {
"build": "npm run package",
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run clean && npm run compile",
"lint": "eslint --cache=true --ext ts,tsx .",
"test": "run-script-os",
"test:linux": "which xvfb-run >/dev/null 2>&1 && xvfb-run --auto-servernum node ./out/test/runTest.js || npm run test:default",
"test:default": "node ./out/test/runTest.js",
"prepackage": "npm run clean && npm run compile",
"package": "vsce package",
"clean": "rimraf -rf ./out",
"clean:all": "rimraf -f ./confluence-markup*.vsix; rimraf -rf ./.vscode-test; rimraf -rf ./out; rimraf -rf ./node_modules",
"changelog": "if [ $((grep \"$(grep -m1 'version' package.json | cut -d '\"' -f 4)\" -n CHANGELOG.md || echo 0) | cut -d ':' -f 1) -eq 3 ]; then awk '/##/{++c;next} c==1' CHANGELOG.md | awk '!/^$/'; else >&2 echo 'Unchecked version'; exit 1; fi"
},
"devDependencies": {
"@prettier/sync": "^0.5.1",
"@types/glob": "8.1.0",
"@types/mocha": "10.0.6",
"@types/node": "20.11.25",
"@types/vscode": "1.84.1",
"@typescript-eslint/eslint-plugin": "7.1.1",
"@typescript-eslint/parser": "7.1.1",
"@vscode/test-electron": "2.3.9",
"@vscode/vsce": "2.24.0",
"eslint": "8.57.0",
"glob": "10.3.10",
"html-formatter": "0.1.9",
"mocha": "10.3.0",
"ovsx": "0.8.3",
"prettier": "^3.2.5",
"rimraf": "5.0.5",
"run-script-os": "1.1.6",
"source-map-support": "0.5.21",
"typescript": "5.4.2"
},
"eslintConfig": {
"env": {
"browser": true,
"es6": true
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended"
],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
},
"plugins": [
"@typescript-eslint"
],
"rules": {}
},
"__metadata": {
"publisherDisplayName": "denco"
}
}