64 строки
1.4 KiB
JSON
64 строки
1.4 KiB
JSON
{
|
|
"name": "avalonia-tagsandidentation",
|
|
"displayName": "Avalonia.TagsAndIdentation",
|
|
"description": "Responsable for Auto-Close aXAML tags and indent the right way",
|
|
"version": "0.0.1",
|
|
"engines": {
|
|
"vscode": "^1.65.0"
|
|
},
|
|
"categories": [
|
|
"Programming Languages",
|
|
"Linters"
|
|
],
|
|
"keywords": [
|
|
"xml",
|
|
"xaml",
|
|
"avalonia",
|
|
"wpf",
|
|
"xsd",
|
|
"completion",
|
|
"linter",
|
|
"lint",
|
|
"format"
|
|
],
|
|
"activationEvents": [
|
|
"onLanguage:xml"
|
|
],
|
|
"main": "./dist/extension.js",
|
|
"contributes": {
|
|
"languages": [
|
|
{
|
|
"id": "xml",
|
|
"configuration": "./src/language-configuration.json"
|
|
}
|
|
]
|
|
},
|
|
"scripts": {
|
|
"vscode:prepublish": "npm run package",
|
|
"compile": "webpack",
|
|
"watch": "webpack --watch",
|
|
"package": "webpack --mode production --devtool hidden-source-map",
|
|
"compile-tests": "tsc -p . --outDir out",
|
|
"watch-tests": "tsc -p . -w --outDir out",
|
|
"pretest": "npm run compile-tests && npm run compile && npm run lint",
|
|
"lint": "eslint src --ext ts",
|
|
"test": "node ./out/test/runTest.js"
|
|
},
|
|
"devDependencies": {
|
|
"@types/vscode": "^1.65.0",
|
|
"@types/glob": "^7.1.4",
|
|
"@types/mocha": "^9.0.0",
|
|
"@types/node": "14.x",
|
|
"@typescript-eslint/eslint-plugin": "^5.1.0",
|
|
"@typescript-eslint/parser": "^5.1.0",
|
|
"eslint": "^8.1.0",
|
|
"glob": "^7.1.7",
|
|
"mocha": "^9.1.3",
|
|
"typescript": "^4.4.4",
|
|
"ts-loader": "^9.2.5",
|
|
"webpack": "^5.52.1",
|
|
"webpack-cli": "^4.8.0",
|
|
"@vscode/test-electron": "^1.6.2"
|
|
}
|
|
}
|