package.json 1006 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "dioxus-rsx-plugin",
  3. "description": "Get HTML completion inside the html! macro for dioxus projects",
  4. "author": "Jonathan Kelley",
  5. "license": "MIT",
  6. "version": "0.1.0",
  7. "repository": {
  8. "type": "git",
  9. "url": "https://github.com/jkelleyrtp/dioxus"
  10. },
  11. "publisher": "jkelleyrtp",
  12. "categories": [],
  13. "keywords": [],
  14. "engines": {
  15. "vscode": "^1.43.0",
  16. "node": "*"
  17. },
  18. "activationEvents": [
  19. "onLanguage:rust"
  20. ],
  21. "main": "./client/out/extension",
  22. "scripts": {
  23. "vscode:prepublish": "cd client && npm install && cd .. && npm run compile",
  24. "compile": "tsc -b",
  25. "watch": "tsc -b -w",
  26. "// postinstall": "cd client && npm install && cd ../server && npm install && cd ..",
  27. "test": "sh ./scripts/e2e.sh"
  28. },
  29. "devDependencies": {
  30. "@types/mocha": "^5.2.7",
  31. "@types/node": "^12.12.0",
  32. "@typescript-eslint/eslint-plugin": "^3.0.2",
  33. "@typescript-eslint/parser": "^3.0.2",
  34. "eslint": "^7.1.0",
  35. "typescript": "^4.0.2"
  36. }
  37. }