src/Tools/VSCode/extension/package.json
author wenzelm
Sat, 04 Mar 2017 13:36:06 +0100
changeset 65104 66b19d05dcee
parent 65098 b47ba1778e44
child 65122 1edb570f5b17
permissions -rw-r--r--
decorations for background and foreground colors;

{
    "name": "isabelle",
    "displayName": "Isabelle",
    "description": "Isabelle Prover IDE",
    "keywords": [
        "theorem prover",
        "formalized mathematics",
        "mathematical logic",
        "functional programming",
        "document preparation"
        ],
    "icon": "isabelle.png",
    "version": "0.6.0",
    "publisher": "makarius",
    "license": "MIT",
    "repository": { "url": "http://isabelle.in.tum.de/repos/isabelle" },
    "engines": { "vscode": "^1.8.0" },
    "categories": ["Languages"],
    "activationEvents": [
        "onLanguage:isabelle",
        "onLanguage:isabelle-ml"
    ],
    "main": "./out/src/extension",
    "contributes": {
        "languages": [
            {
                "id": "isabelle",
                "aliases": ["Isabelle"],
                "extensions": [".thy"],
                "configuration": "./isabelle-language.json"
            },
            {
                "id": "isabelle-ml",
                "aliases": ["Isabelle/ML"],
                "extensions": [".ML", ".sml", ".sig"],
                "configuration": "./isabelle-ml-language.json"
            }

        ],
        "grammars": [
            {
                "language": "isabelle",
                "scopeName": "source.isabelle",
                "path": "./isabelle-grammar.json"
            },
            {
                "language": "isabelle-ml",
                "scopeName": "source.isabelle-ml",
                "path": "./isabelle-ml-grammar.json"
            }
        ],
        "configuration": {
            "title": "Isabelle",
            "properties": {
                "isabelle.cygwin_root": {
                    "type": "string",
                    "default": "",
                    "description": "Root of Cygwin installation on Windows (e.g. ISABELLE_HOME/cygwin)."
                },
                "isabelle.home": {
                    "type": "string",
                    "default": "",
                    "description": "Main Isabelle directory (ISABELLE_HOME)."
                },
                "isabelle.args": {
                    "type": "array",
                    "items": { "type": "string" },
                    "default": [],
                    "description": "Command-line arguments for isabelle vscode_server process."
                },
                "isabelle.unprocessed1_light_color": { "type": "string", "default": "rgba(255, 160, 160, 0.20)" },
                "isabelle.unprocessed1_dark_color": { "type": "string", "default": "rgba(255, 160, 160, 0.20)" },
                "isabelle.running1_light_color": { "type": "string", "default": "rgba(97, 0, 97, 0.39)" },
                "isabelle.running1_dark_color": { "type": "string", "default": "rgba(97, 0, 97, 0.39)" },
                "isabelle.bad_light_color": { "type": "string", "default": "rgba(255, 106, 106, 0.39)" },
                "isabelle.bad_dark_color": { "type": "string", "default": "rgba(255, 106, 106, 0.39)" },
                "isabelle.intensify_light_color": { "type": "string", "default": "rgba(255, 204, 102, 0.39)" },
                "isabelle.intensify_dark_color": { "type": "string", "default": "rgba(255, 204, 102, 0.39)" },
                "isabelle.entity_light_color": { "type": "string", "default": "rgba(204, 217, 255, 0.50)" },
                "isabelle.entity_dark_color": { "type": "string", "default": "rgba(204, 217, 255, 0.50)" },
                "isabelle.active_light_color": { "type": "string", "default": "rgba(220, 220, 220, 1.00)" },
                "isabelle.active_dark_color": { "type": "string", "default": "rgba(220, 220, 220, 1.00)" },
                "isabelle.active_result_light_color": { "type": "string", "default": "rgba(153, 153, 102, 1.00)" },
                "isabelle.active_result_dark_color": { "type": "string", "default": "rgba(153, 153, 102, 1.00)" },
                "isabelle.markdown_item1_light_color": { "type": "string", "default": "rgba(218, 254, 218, 1.00)" },
                "isabelle.markdown_item1_dark_color": { "type": "string", "default": "rgba(218, 254, 218, 1.00)" },
                "isabelle.markdown_item2_light_color": { "type": "string", "default": "rgba(255, 240, 204, 1.00)" },
                "isabelle.markdown_item2_dark_color": { "type": "string", "default": "rgba(255, 240, 204, 1.00)" },
                "isabelle.markdown_item3_light_color": { "type": "string", "default": "rgba(231, 231, 255, 1.00)" },
                "isabelle.markdown_item3_dark_color": { "type": "string", "default": "rgba(231, 231, 255, 1.00)" },
                "isabelle.markdown_item4_light_color": { "type": "string", "default": "rgba(255, 224, 240, 1.00)" },
                "isabelle.markdown_item4_dark_color": { "type": "string", "default": "rgba(255, 224, 240, 1.00)" },
                "isabelle.quoted_light_color": { "type": "string", "default": "rgba(139, 139, 139, 0.10)" },
                "isabelle.quoted_dark_color": { "type": "string", "default": "rgba(139, 139, 139, 0.10)" },
                "isabelle.antiquoted_light_color": { "type": "string", "default": "rgba(255, 200, 50, 0.10)" },
                "isabelle.antiquoted_dark_color": { "type": "string", "default": "rgba(255, 200, 50, 0.10)" }
            }
        }
    },
    "scripts": {
        "vscode:prepublish": "tsc -p ./",
        "compile": "tsc -watch -p ./",
        "postinstall": "node ./node_modules/vscode/bin/install"
    },
    "devDependencies": {
        "typescript": "^2.1.0",
        "vscode": "^1.0.0",
        "mocha": "^2.3.3",
        "@types/node": "^6.0.40",
        "@types/mocha": "^2.2.32"
    },
    "dependencies": {
        "vscode-languageclient": "^2.6.3"
    }
}