dioxus/packages/vscode-ext/package.json

55 lines
1.3 KiB
JSON
Raw Normal View History

2021-01-26 19:02:35 +00:00
{
"name": "dioxus-rsx-plugin",
"description": "Get HTML completion inside the html! macro for dioxus projects",
"author": "Jonathan Kelley",
"license": "MIT",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "https://github.com/jkelleyrtp/dioxus"
},
"publisher": "jkelleyrtp",
"categories": [],
"keywords": [],
"engines": {
"vscode": "^1.43.0",
"node": "*"
},
"activationEvents": [
"onLanguage:html1"
],
"main": "./client/out/extension",
"contributes": {
"languages": [
{
"id": "rsx",
"extensions": [
".rs"
]
}
],
"grammars": [
{
"language": "rsx",
"scopeName": "text.rsx.basic",
"path": "./syntaxes/rsx.tmLanguage.json"
}
]
},
"scripts": {
"vscode:prepublish": "cd client && npm install && cd .. && npm run compile",
"compile": "tsc -b",
"watch": "tsc -b -w",
"// postinstall": "cd client && npm install && cd ../server && npm install && cd ..",
"test": "sh ./scripts/e2e.sh"
},
"devDependencies": {
"@types/mocha": "^5.2.7",
"@types/node": "^12.12.0",
"@typescript-eslint/eslint-plugin": "^3.0.2",
"@typescript-eslint/parser": "^3.0.2",
"eslint": "^7.1.0",
"typescript": "^4.0.2"
}
}