mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-24 13:13:06 +00:00
51 lines
1.4 KiB
JSON
51 lines
1.4 KiB
JSON
{
|
|
"name": "dioxusstudio",
|
|
"displayName": "dioxusStudio",
|
|
"description": "Toolkit for IDE support in Dioxus apps",
|
|
"version": "0.0.1",
|
|
"publisher": "jkelleyrtp",
|
|
"private": true,
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Microsoft/vscode-extension-samples"
|
|
},
|
|
"engines": {
|
|
"vscode": "^1.32.0"
|
|
},
|
|
"categories": [
|
|
"Other"
|
|
],
|
|
"activationEvents": [
|
|
"onCommand:extension.htmlToDioxusRsx",
|
|
"onCommand:extension.htmlToDioxusComponent"
|
|
],
|
|
"main": "./out/extension",
|
|
"contributes": {
|
|
"commands": [
|
|
{
|
|
"command": "extension.htmlToDioxusRsx",
|
|
"title": "Dioxus: Convert HTML to RSX"
|
|
},
|
|
{
|
|
"command": "extension.htmlToDioxusComponent",
|
|
"title": "Dioxus: Convert HTML to Component"
|
|
}
|
|
]
|
|
},
|
|
"scripts": {
|
|
"vscode:prepublish": "npm run compile",
|
|
"compile": "tsc -p ./",
|
|
"lint": "eslint . --ext .ts,.tsx",
|
|
"watch": "tsc -watch -p ./",
|
|
"package": "vsce package"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^12.12.0",
|
|
"@types/vscode": "^1.32.0",
|
|
"@typescript-eslint/eslint-plugin": "^4.16.0",
|
|
"@typescript-eslint/parser": "^4.16.0",
|
|
"eslint": "^7.21.0",
|
|
"typescript": "^4.3.5"
|
|
}
|
|
}
|