-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.19 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
{
"name": "asm-formatter",
"displayName": "MIPS Assembly Formatter",
"version": "1.2.16",
"publisher": "AngaBlue",
"icon": "icon.png",
"categories": [
"Formatters"
],
"activationEvents": [
"onLanguage:mips"
],
"description": "A formatter extension for VSCode supporting the MIPS assembly language.",
"main": "build/index.js",
"contributes": {
"languages": [
{
"id": "mips",
"aliases": [
"MIPS Assembly",
"mips",
"asm"
],
"extensions": [
".asm",
".s",
".mips",
".spim"
]
}
]
},
"scripts": {
"vscode:prepublish": "npm run build",
"build": "tsc",
"watch": "tsc -watch",
"lint": "biome check --fix --error-on-warnings"
},
"engines": {
"vscode": "^1.125.0"
},
"keywords": [
"vscode",
"formatter",
"mips",
"assembly",
"asm"
],
"author": {
"name": "AngaBlue",
"email": "contact@anga.blue",
"url": "https://anga.blue"
},
"license": "MIT",
"devDependencies": {
"@angablue/biome-config": "^1.1.1",
"@biomejs/biome": "^2.5.5",
"@types/node": "^26.1.1",
"@types/vscode": "^1.125.0",
"typescript": "^7.0.2"
},
"repository": {
"type": "git",
"url": "https://github.com/AngaBlue/asm-formatter"
}
}