123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- {
- "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"
- }
- }
|