-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
112 lines (112 loc) · 2.63 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
{
"name": "vscode-gift",
"displayName": "GIFT Format",
"description": "Syntax highlighting and snippets for Moodle's GIFT format",
"version": "0.1.11",
"publisher": "ethan-ou",
"engines": {
"vscode": "^1.75.0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ethan-ou/vscode-gift"
},
"icon": "resources/icon.png",
"keywords": [
"gift",
"moodle"
],
"categories": [
"Programming Languages"
],
"activationEvents": [
"onLanguage:gift"
],
"main": "./dist/client/src/extension",
"contributes": {
"languages": [
{
"id": "gift",
"aliases": [
"Gift",
"gift"
],
"extensions": [
".gift"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "gift",
"scopeName": "source.gift",
"path": "./syntaxes/gift.tmLanguage.json"
}
],
"snippets": [
{
"language": "gift",
"path": "./snippets/gift.json"
},
{
"language": "gift",
"path": "./snippets/giftTitle.json"
}
],
"configuration": {
"type": "object",
"title": "giftLanguage configuration",
"properties": {
"giftLanguage.maxNumberOfProblems": {
"scope": "resource",
"type": "number",
"default": 1000,
"description": "Controls the maximum number of problems produced by the server."
},
"giftLanguage.trace.server": {
"scope": "window",
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "Traces the communication between VS Code and the language server."
}
}
},
"commands": [
{
"command": "gift.escapeSpecialChar",
"title": "Gift: Escape special characters"
},
{
"command": "gift.escapeMarkdownCodeBlock",
"title": "Gift: Escape code block (Markdown)"
},
{
"command": "gift.unescapeSpecialChar",
"title": "Gift: Unescape special characters"
},
{
"command": "gift.unescapeMarkdownCodeBlock",
"title": "Gift: Unescape code block (Markdown)"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsup",
"watch": "tsup",
"postinstall": "cd client && npm install && cd ../server && npm install && cd .."
},
"devDependencies": {
"@types/node": "^20.12.7",
"typescript": "^5.4.5",
"tsup": "^8.0.2"
},
"dependencies": {}
}