-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 3.29 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
{
"name": "mipsy",
"displayName": "MIPSY Support",
"description": "Provides syntax highlighting, semantic highlighting, snippets, and more for MIPSY (https://github.com/insou22/mipsy).",
"version": "0.2.1",
"publisher": "Bahnschrift",
"homepage": "https://github.com/Bahnschrift/vscode-mipsy-support",
"icon": "images/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/Bahnschrift/vscode-mipsy-support"
},
"bugs": {
"url": "https://github.com/Bahnschrift/vscode-mipsy-support",
"email": "[email protected]"
},
"engines": {
"vscode": "^1.73.0"
},
"categories": [
"Programming Languages",
"Snippets"
],
"activationEvents": [
"onLanguage:mips"
],
"main": "./out/mips",
"contributes": {
"languages": [
{
"id": "mips",
"aliases": [
"Mips",
"mips"
],
"extensions": [
".s",
".mips",
".spim"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "mips",
"scopeName": "source.mips",
"path": "./syntaxes/mips.tmLanguage.json"
}
],
"semanticTokenScopes": [
{
"scopes": {
"label": [
"support.class.label.mips"
],
"constant": [
"entity.name.function.constant.mips"
]
}
}
],
"configuration": {
"title": "Mipsy Support",
"properties": {
"mipsy-support.autoIndentAfterInstructionCompletion": {
"type": "boolean",
"default": true,
"description": "Automatically indent after completing an instruction."
},
"mipsy-support.snippetCommentColumn": {
"type": "integer",
"default": 32,
"minimum": 0,
"description": "Column at which to align comments in snippets. The column is calculated as an offset from the starting column of the snippet.\nShould be a multiple of the tab size, which for mips should be 8."
}
}
}
},
"capabilities": {
"hoverProvider": true,
"completionProvider": {
"resolveProvider": true
},
"definitionProvider": true,
"referencesProvider": true,
"documentSymbolProvider": true,
"renameProvider": true,
"semanticTokensProvider": true
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts"
},
"devDependencies": {
"@types/node": "^18.0.0",
"@types/vscode": "^1.68.0",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"typescript": "^4.7.4"
}
}