vscode-dtdl/package.json

103 строки
2.6 KiB
JSON

{
"name": "vscode-dtdl",
"displayName": "DTDL",
"description": "This extension provides syntax highlighting to read and edit JSON documents using the Digital Twins Definition Language",
"version": "1.4.1",
"publisher": "vsciot-vscode",
"aiKey": "[AIKEY PLACEHOLDER]",
"icon": "logo.png",
"license": "MIT",
"engines": {
"vscode": "^1.63.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/vscode-dtdl.git"
},
"bugs": {
"url": "https://github.com/Microsoft/vscode-dtdl/issues"
},
"homepage": "https://github.com/Microsoft/vscode-dtdl/blob/main/README.md",
"categories": [
"Azure",
"Snippets"
],
"activationEvents": [
"onCommand:vscode-dtdl.createInterface",
"onLanguage:json",
"workspaceContains:**/*.json"
],
"main": "./dist/extension",
"contributes": {
"commands": [
{
"command": "vscode-dtdl.createInterface",
"title": "Create Interface",
"category": "DTDL"
}
],
"jsonValidation": [
{
"fileMatch": "*.json",
"url": "./resources/jsonSchema.json"
}
],
"languages": [
{
"id": "colorized-channel",
"mimetypes": [
"text/x-code-output"
]
}
],
"grammars": [
{
"language": "colorized-channel",
"scopeName": "text.channel.colorized",
"path": "./syntaxes/colorized.channel.tmLanguage"
}
],
"snippets": [
{
"language": "json",
"path": "./snippets/snippets.json"
}
]
},
"scripts": {
"vscode:prepublish": "webpack --mode production",
"compile": "tsc -p ./",
"eslint": "eslint src/**/*.ts",
"test": "jest",
"test:coverage": "jest --coverage",
"webpack": "webpack --mode development"
},
"devDependencies": {
"@types/fs-extra": "^7.0.0",
"@types/glob": "^7.1.1",
"@types/jest": "^26.0.24",
"@types/node": "^10.12.21",
"@types/vscode": "^1.36.0",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"copy-webpack-plugin": "^6.0.1",
"eslint": "^8.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"glob": "^7.1.4",
"jest": "^27.0.6",
"prettier": "^1.19.1",
"ts-jest": "^27.0.4",
"ts-loader": "^6.2.1",
"typescript": "^3.3.1",
"webpack": "^5.81.0",
"webpack-cli": "^4.7.2"
},
"dependencies": {
"dtdl-language-server": "0.6.1",
"fs-extra": "^7.0.1",
"vscode-extension-telemetry": "^0.1.6",
"vscode-languageclient": "^6.1.3"
}
}