PokéScript Language support for Visual Studio Code.

package.json 1.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "pokescript",
  3. "displayName": "PokéScript",
  4. "description": "PokéScript Language Support",
  5. "version": "1.0.1",
  6. "homepage": "https://gitlab.karathan.at/Karathan/vs-pokescript",
  7. "repository": {
  8. "type": "git",
  9. "url": "https://gitlab.karathan.at/Karathan/vs-pokescript.git"
  10. },
  11. "license": "MIT",
  12. "galleryBanner": {
  13. "color": "#0084A9",
  14. "theme": "dark"
  15. },
  16. "icon": "images/icon.png",
  17. "publisher": "karathan",
  18. "engines": {
  19. "vscode": "^1.25.0"
  20. },
  21. "categories": [
  22. "Programming Languages"
  23. ],
  24. "keywords": [
  25. "romhacking",
  26. "assembly",
  27. "pokescript"
  28. ],
  29. "preview": true,
  30. "extensionDependencies": [
  31. "dan-c-underwood.arm"
  32. ],
  33. "contributes": {
  34. "grammars": [
  35. {
  36. "scopeName": "source.arm.pokescript",
  37. "path": "./syntaxes/pokescript.json",
  38. "injectTo": [
  39. "source.arm"
  40. ]
  41. }
  42. ]
  43. },
  44. "devDependencies": {
  45. "typescript": "^2.6.1",
  46. "vscode": "^1.1.6",
  47. "tslint": "^5.8.0",
  48. "@types/node": "^7.0.43",
  49. "@types/mocha": "^2.2.42"
  50. }
  51. }