-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.12 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.12 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
{
"name": "asm-formatter",
"displayName": "MIPS Assembly Formatter",
"version": "1.2.13",
"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.100.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.0.5",
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.15.17",
"@types/vscode": "^1.100.0",
"typescript": "^5.8.3"
},
"repository": {
"type": "git",
"url": "https://github.com/AngaBlue/asm-formatter"
}
}