package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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:html1"
  20. ],
  21. "main": "./client/out/extension",
  22. "contributes": {
  23. "languages": [
  24. {
  25. "id": "rsx",
  26. "extensions": [
  27. ".rs"
  28. ]
  29. }
  30. ],
  31. "grammars": [
  32. {
  33. "language": "rsx",
  34. "scopeName": "text.rsx.basic",
  35. "path": "./syntaxes/rsx.tmLanguage.json"
  36. }
  37. ]
  38. },
  39. "scripts": {
  40. "vscode:prepublish": "cd client && npm install && cd .. && npm run compile",
  41. "compile": "tsc -b",
  42. "watch": "tsc -b -w",
  43. "// postinstall": "cd client && npm install && cd ../server && npm install && cd ..",
  44. "test": "sh ./scripts/e2e.sh"
  45. },
  46. "devDependencies": {
  47. "@types/mocha": "^5.2.7",
  48. "@types/node": "^12.12.0",
  49. "@typescript-eslint/eslint-plugin": "^3.0.2",
  50. "@typescript-eslint/parser": "^3.0.2",
  51. "eslint": "^7.1.0",
  52. "typescript": "^4.0.2"
  53. }
  54. }