-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
138 lines (138 loc) · 4.53 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
{
"name": "powerpc-syntax",
"displayName": "PowerPC Syntax",
"description": "Full syntax support, Go To Definition, Find References, snippets and more (Some features pending)",
"author": "Noah Fields",
"license": "MIT",
"version": "1.1.9",
"repository": {
"type": "git",
"url": "https://github.com/OGoodness/VSCode-PowerPC-Syntax"
},
"publisher": "OGoodness",
"categories": [
"Programming Languages",
"Snippets",
"Themes",
"Linters"
],
"keywords": [
"asm",
"syntax",
"definition",
"assembly",
"powerpc"
],
"engines": {
"vscode": "^1.52.0"
},
"activationEvents": [
"onLanguage:asm",
"onCommand:asmfilesupport.reparse.workspace",
"onCommand:asmfilesupport.showExtensionChanges",
"onCommand:asmfilesupport.showReadme"
],
"main": "./client/out/extension",
"icon": "images/icon.png",
"homepage": "https://github.com/OGoodness/VSCode-PowerPC-Syntax",
"bugs": {
"url": "https://github.com/OGoodness/VSCode-PowerPC-Syntax/issues"
},
"maintainers": [
"Noah Fields"
],
"contributes": {
"languages": [
{
"id": "asm",
"aliases": [
"asm",
"assembly",
".asm"
],
"extensions": [
".s",
".asm"
],
"configuration": "./language-configuration.json"
}
],
"configuration": {
"type": "object",
"title": "Asm file support",
"properties": {
"asmLanguageServer.ignoreTodo": {
"type": "boolean",
"default": false,
"description": "Ignore TODO comments in documents."
},
"asmLanguageServer.ignoreBreakingChange": {
"type": "boolean",
"default": false,
"description": "Ignore breaking change comments in documents."
},
"asmLanguageServer.ignoreErrors": {
"type": "boolean",
"default": false,
"description": "Ignore all errors in documents."
},
"asmLanguageServer.disallowAllowemptydefault": {
"type": "boolean",
"default": false,
"description": "Disallows allowemptydefault in delcalls. It will be marked as an Error."
},
"asmLanguageServer.excludePaths": {
"type": "array",
"default": [],
"items": {
"type": "string"
},
"description": "Configure glob patterns for excluding files and folders from being indexed for template definitions."
}
}
},
"snippets": [
{
"language": "asm",
"path": "./snippets/asm-snippets.json"
}
],
"grammars": [
{
"language": "asm",
"scopeName": "source.asm",
"path": "./syntax/asm.tmLanguage.json"
}
],
"commands": [
{
"command": "asmfilesupport.reparse.workspace",
"title": "Asm File Support: Reparse workspace"
},
{
"command": "asmfilesupport.showExtensionChanges",
"title": "Asm File Support: Show extension changes"
},
{
"command": "asmfilesupport.about",
"title": "Asm File Support: About"
}
]
},
"scripts": {
"vscode:prepublish": "cd client && npm install && cd .. && npm run compile",
"compile": "tsc -b",
"watch": "tsc -b -w",
"watch:client": "tsc -w -p ./client/tsconfig.json",
"watch:server": "tsc -w -p ./server/tsconfig.json",
"postinstall": "cd client && npm install && cd ../server && npm install && cd .."
},
"devDependencies": {
"@types/mocha": "^5.2.7",
"@types/node": "^8.10.60",
"typescript": "4.1.3"
},
"dependencies": {
"vscode-languageserver": "^7.0.0"
}
}