2016-08-03 21:45:47 +08:00
|
|
|
{
|
|
|
|
"name": "extension-editing",
|
2018-02-20 01:38:12 +08:00
|
|
|
"displayName": "%displayName%",
|
|
|
|
"description": "%description%",
|
2018-02-28 09:35:19 +08:00
|
|
|
"version": "1.0.0",
|
2016-08-03 21:45:47 +08:00
|
|
|
"publisher": "vscode",
|
|
|
|
"engines": {
|
|
|
|
"vscode": "^1.4.0"
|
|
|
|
},
|
|
|
|
"activationEvents": [
|
2017-02-09 22:14:36 +08:00
|
|
|
"onLanguage:json",
|
2017-06-24 14:20:31 +08:00
|
|
|
"onLanguage:markdown",
|
2016-08-03 21:45:47 +08:00
|
|
|
"onLanguage:typescript"
|
|
|
|
],
|
|
|
|
"main": "./out/extension",
|
|
|
|
"scripts": {
|
|
|
|
"compile": "gulp compile-extension:extension-editing",
|
|
|
|
"watch": "gulp watch-extension:extension-editing"
|
|
|
|
},
|
2017-02-09 22:14:36 +08:00
|
|
|
"dependencies": {
|
2017-12-12 22:35:52 +08:00
|
|
|
"jsonc-parser": "^1.0.0",
|
2017-06-24 14:20:31 +08:00
|
|
|
"markdown-it": "^8.3.1",
|
|
|
|
"parse5": "^3.0.2",
|
2018-07-03 22:12:20 +08:00
|
|
|
"vscode-nls": "^3.2.4"
|
2017-02-09 22:14:36 +08:00
|
|
|
},
|
2016-08-23 18:11:04 +08:00
|
|
|
"contributes": {
|
|
|
|
"jsonValidation": [
|
|
|
|
{
|
|
|
|
"fileMatch": "package.json",
|
|
|
|
"url": "vscode://schemas/vscode-extensions"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"fileMatch": "*language-configuration.json",
|
|
|
|
"url": "vscode://schemas/language-configuration"
|
2016-08-23 20:39:42 +08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"fileMatch": "*icon-theme.json",
|
|
|
|
"url": "vscode://schemas/icon-theme"
|
2017-03-09 05:56:21 +08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"fileMatch": "*color-theme.json",
|
|
|
|
"url": "vscode://schemas/color-theme"
|
2016-08-23 18:11:04 +08:00
|
|
|
}
|
|
|
|
]
|
2017-02-02 07:20:17 +08:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2017-06-24 14:20:31 +08:00
|
|
|
"@types/markdown-it": "0.0.2",
|
2017-11-14 06:03:52 +08:00
|
|
|
"@types/node": "6.0.78"
|
2016-08-03 21:45:47 +08:00
|
|
|
}
|
2017-11-14 06:03:52 +08:00
|
|
|
}
|