This repository was archived by the owner on Oct 7, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 1.92 KB
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
{
"name": "quarkdown",
"displayName": "Quarkdown",
"description": "Language support for Quarkdown, including syntax highlighting, code completion and more to come!",
"repository": {
"type": "git",
"url": "https://github.com/pallandos/quarkdown-language-support"
},
"homepage": "https://quarkdown.com/",
"keywords": [
"quarkdown",
"qd",
"syntax-highlighting",
"language-support",
"markdown"
],
"license": "GNU General Public License v3.0",
"bugs": {
"url": "https://github.com/pallandos/quarkdown-language-support/issues"
},
"icon": "assets/img/quarkdown-light.png",
"galleryBanner": {
"color": "#262626",
"theme": "dark",
"logo": "assets/img/quarkdown-light.png"
},
"publisher": "Pallandos",
"author": {
"name": "Pallandos"
},
"version": "1.2.2",
"engines": {
"vscode": "^1.102.0"
},
"categories": [
"Programming Languages"
],
"main": "./out/extension.js",
"activationEvents": [
"onLanguage:qd",
"onLanguage:qmd"
],
"files": [
"src/data/suggestions.json"
],
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile"
},
"devDependencies": {
"@types/node": "^20.x",
"@types/vscode": "^1.102.0",
"typescript": "^5.4.5"
},
"contributes": {
"languages": [
{
"id": "qd",
"aliases": [
"Quarkdown",
"qd"
],
"extensions": [
".qd",
".qmd"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "qd",
"scopeName": "source.qd",
"path": "./syntaxes/qd.tmLanguage.json"
}
],
"configurationDefaults": {
"[qd]": {
"editor.wordWrap": "on",
"editor.wrappingIndent": "same",
"editor.wordBasedSuggestions": "off"
}
}
}
}