-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
63 lines (63 loc) · 1.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
{
"name": "asm-formatter",
"displayName": "MIPS Assembly Formatter",
"version": "1.2.10",
"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": "eslint . --ext js,jsx,ts,tsx --fix"
},
"engines": {
"vscode": "^1.92.0"
},
"keywords": [
"vscode",
"formatter",
"mips",
"assembly",
"asm"
],
"author": "AngaBlue <[email protected]>",
"license": "LGPL-3.0-or-later",
"devDependencies": {
"@angablue/eslint-config": "^1.4.5",
"@types/node": "^22.1.0",
"@types/vscode": "^1.92.0",
"eslint": "^8.57.0",
"prettier": "^3.3.3",
"typescript": "^5.5.4"
},
"repository": {
"type": "git",
"url": "https://github.com/AngaBlue/asm-formatter"
}
}