-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 852 Bytes
/
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
{
"name": "arm64-assembly-snippets",
"displayName": "ARM64 Assembly snippets",
"description": "Commonly used snippets for the ARM64 Assembly language",
"version": "0.0.3",
"author": {
"name": "Drew Markel"
},
"publisher": "drewmrk",
"repository": {
"type": "git",
"url": "https://github.com/drewmrk/ARM64-Assembly-snippets"
},
"engines": {
"vscode": "^1.65.0"
},
"icon": "images/icon.png",
"categories": [
"Snippets"
],
"keywords": [
"asm",
"assembly",
"arm",
"arm64",
"assembly snippets",
"asm snippets",
"assembler"
],
"contributes": {
"snippets": [
{
"language": "arm",
"path": "./snippets/snippets.code-snippets"
},
{
"language": "asm-collection",
"path": "./snippets/snippets.code-snippets"
}
]
}
}