package.json 2.6 KB
Newer Older
1 2 3 4 5 6 7
{
    "name": "emmet",
    "displayName": "emmet",
    "description": "Emmet support for VS Code",
    "version": "0.0.1",
    "publisher": "vscode",
    "engines": {
8
        "vscode": "^1.13.0"
9 10 11 12 13 14 15 16 17
    },
    "categories": [
        "Other"
    ],
    "repository": {
        "type": "git",
        "url": "https://github.com/Microsoft/vscode-emmet"
    },
    "activationEvents": [
18
        "*"
19 20 21 22 23
    ],
    "main": "./out/extension",
    "contributes": {
        "configuration": {
            "type": "object",
24
            "title": "Emmet",
25
            "properties": {
R
Ramya Achutha Rao 已提交
26
                "emmet.showExpandedAbbreviation": {
27 28 29 30
                    "type": "boolean",
                    "default": true,
                    "description": "Shows expanded emmet abbreviations as suggestions"
                },
R
Ramya Achutha Rao 已提交
31
                "emmet.showAbbreviationSuggestions": {
32 33 34
                    "type": "boolean",
                    "default": true,
                    "description": "Shows possible emmet abbreviations as suggestions"
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 67
                },
                "emmet.variables":{
                    "type": "object",
                    "properties": {
                        "lang": {
                            "type": "string",
                            "default": "en"
                        },
                        "locale": {
                            "type": "string",
                            "default": "en-US"
                        },
                        "charset": {
                            "type": "string",
                            "default": "UTF-8"
                        },
                        "indentation": {
                            "type": "string",
                            "default": "\t"
                        },
                        "newline": {
                            "type": "string",
                            "default": "\n"
                        }
                    },
                    "default":{
                        "lang": "en",
                        "locale": "en-US",
                        "charset": "UTF-8",
                        "indentation": "\t",
                        "newline": "\n"
                    },
                    "description": "Variables to be used in emmet snippets"
68 69 70 71 72
                }
            }
        }
    },
    "scripts": {
73
        "compile": "gulp compile-extension:emmet"
74 75
    },
    "devDependencies": {
76
        "@types/node": "^7.0.4"
77 78 79 80 81 82 83 84
    },
    "dependencies": {
        "@emmetio/expand-abbreviation": "^0.5.4",
        "@emmetio/extract-abbreviation": "^0.1.1",
        "@emmetio/html-matcher": "^0.3.1",
        "@emmetio/css-parser": "^0.3.0"
    }
}