opengoal-vscode/package.json

298 lines
8 KiB
JSON

{
"name": "opengoal",
"displayName": "OpenGOAL",
"description": "OpenGOAL Support for VSCode",
"publisher": "opengoal",
"version": "0.0.2",
"engines": {
"vscode": "^1.69.0"
},
"categories": [
"Programming Languages"
],
"icon": "img/logo.png",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/open-goal/opengoal-vscode"
},
"main": "./out/extension.js",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint . --ext .ts,.tsx",
"watch": "tsc -watch -p ./",
"format": "npx prettier --write .",
"format:check": "npx prettier --check ."
},
"devDependencies": {
"@types/follow-redirects": "^1.14.1",
"@types/glob": "^7.2.0",
"@types/node": "^12.12.0",
"@types/vscode": "^1.69.0",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"eslint": "^8.13.0",
"typescript": "^4.6.3"
},
"dependencies": {
"comment-json": "^4.2.2",
"follow-redirects": "^1.15.1",
"glob": "^8.0.3",
"vscode-languageclient": "^8.0.1"
},
"activationEvents": [
"onLanguage:opengoal",
"onLanguage:opengoal-goos",
"onLanguage:opengoal-ir",
"onCommand:opengoal.switchFile",
"onCommand:opengoal.decomp.openMostRecentIRFile",
"onCommand:opengoal.decomp.openManPage",
"onCommand:opengoal.decomp.decompileSpecificFile",
"onCommand:opengoal.decomp.decompileCurrentFile",
"onCommand:opengoal.decomp.toggleAutoDecompilation",
"onCommand:opengoal.decomp.updateSourceFile",
"onCommand:opengoal.decomp.updateReferenceTest",
"opengoal.decomp.casts.repeatLast",
"opengoal.decomp.casts.labelCastSelection",
"opengoal.decomp.casts.stackCastSelection",
"opengoal.decomp.casts.typeCastSelection"
],
"contributes": {
"commands": [
{
"command": "opengoal.switchFile",
"title": "OpenGOAL - Switch File"
},
{
"command": "opengoal.decomp.openMostRecentIRFile",
"title": "OpenGOAL - Open Recent IR2 File"
},
{
"command": "opengoal.decomp.openManPage",
"title": "OpenGOAL - MIPS Man Page"
},
{
"command": "opengoal.decomp.decompileSpecificFile",
"title": "OpenGOAL - Decompile Specific File"
},
{
"command": "opengoal.decomp.decompileCurrentFile",
"title": "OpenGOAL - Decompile Current File"
},
{
"command": "opengoal.decomp.toggleAutoDecompilation",
"title": "OpenGOAL - Toggle Auto-Decompilation"
},
{
"command": "opengoal.decomp.updateSourceFile",
"title": "OpenGOAL - Copy Decompilation to Source File"
},
{
"command": "opengoal.decomp.updateReferenceTest",
"title": "OpenGOAL - Copy Decompilation to Reference Tests"
},
{
"command": "opengoal.decomp.casts.repeatLast",
"title": "OpenGOAL - Casts - Repeat Last"
},
{
"command": "opengoal.decomp.casts.castSelection",
"title": "OpenGOAL - Casts - Add Cast to Selection"
},
{
"command": "opengoal.decomp.casts.labelCastSelection",
"title": "OpenGOAL - Casts - Add Label Cast to Selection"
},
{
"command": "opengoal.decomp.casts.stackCastSelection",
"title": "OpenGOAL - Casts - Add Stack Cast to Selection"
},
{
"command": "opengoal.decomp.casts.typeCastSelection",
"title": "OpenGOAL - Casts - Add Type Cast to Selection"
},
{
"command": "opengoal.lsp.start",
"title": "OpenGOAL - LSP - Start"
},
{
"command": "opengoal.lsp.stop",
"title": "OpenGOAL - LSP - Stop"
},
{
"command": "opengoal.lsp.restart",
"title": "OpenGOAL - LSP - Restart"
}
],
"configuration": {
"title": "OpenGOAL",
"properties": {
"opengoal.launchLspOnStartup": {
"type": [
"boolean"
],
"default": true,
"description": "Whether or not the LSP should be started automatically"
},
"opengoal.eeManPagePath": {
"type": [
"string",
"null"
],
"default": null,
"description": "File path to the EE Man Page"
},
"opengoal.vuManPagePath": {
"type": [
"string",
"null"
],
"default": null,
"description": "File path to the VU Man Page"
},
"opengoal.decompilerPath": {
"type": [
"string",
"null"
],
"default": null,
"description": "File path to the decompiler executable"
},
"opengoal.decompilerJak1Config": {
"type": [
"string",
"null"
],
"default": null,
"description": "Config to use for decompiling jak 1 related files"
},
"opengoal.decompilerJak2Config": {
"type": [
"string",
"null"
],
"default": null,
"description": "Config to use for decompiling jak 2 related files"
},
"opengoal.decompilerJak1ConfigDirectory": {
"type": [
"string",
"null"
],
"default": null,
"description": "Directory containing cast files to use for decompiling jak 1 related files"
},
"opengoal.decompilerJak2ConfigDirectory": {
"type": [
"string",
"null"
],
"default": null,
"description": "Directory containing cast files to use for decompiling jak 2 related files"
}
}
},
"configurationDefaults": {
"[opengoal-ir]": {
"editor.bracketPairColorization.enabled": false
}
},
"customEditors": [
{
"viewType": "pdf.opengoal.manpage",
"displayName": "OpenGOAL Manpage Preview",
"selector": [
{
"filenamePattern": "*.pdf"
}
]
}
],
"menus": {
"editor/context": [
{
"when": "resourceLangId == opengoal-ir",
"command": "opengoal.decomp.openManPage",
"group": "z_commands"
}
]
},
"languages": [
{
"id": "opengoal",
"aliases": [
"OpenGOAL",
"opengoal"
],
"extensions": [
".gc",
".gd"
],
"icon": {
"light": "./icons/opengoal.png",
"dark": "./icons/opengoal.png"
},
"configuration": "./syntaxes/configs/opengoal.jsonc"
},
{
"id": "opengoal-goos",
"aliases": [
"OpenGOAL-GOOS",
"opengoal-goos"
],
"extensions": [
".gs",
".gp"
],
"icon": {
"light": "./icons/opengoal-goos.png",
"dark": "./icons/opengoal-goos.png"
},
"configuration": "./syntaxes/configs/opengoal-goos.jsonc"
},
{
"id": "opengoal-ir",
"aliases": [
"OpenGOAL-IR",
"opengoal-ir"
],
"filenamePatterns": [
"*_ir2.asm"
],
"icon": {
"light": "./icons/opengoal-ir.png",
"dark": "./icons/opengoal-ir.png"
},
"configuration": "./syntaxes/configs/opengoal-ir.jsonc"
}
],
"grammars": [
{
"language": "opengoal",
"scopeName": "source.opengoal",
"path": "./syntaxes/opengoal.tmLanguage.json"
},
{
"language": "opengoal-goos",
"scopeName": "source.opengoal-goos",
"path": "./syntaxes/opengoal-goos.tmLanguage.json"
},
{
"language": "opengoal-ir",
"scopeName": "source.opengoal-ir",
"path": "./syntaxes/opengoal-ir.tmLanguage.json",
"embeddedLanguages": {
"meta.embedded.block.opengoal": "opengoal"
}
}
],
"snippets": [
{
"language": "opengoal",
"path": "./snippets/opengoal.json"
}
]
}
}