12345678910111213141516171819202122232425262728293031323334353637 |
- {
- "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:rust"
- ],
- "main": "./client/out/extension",
- "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"
- }
- }
|