My Marlin configs for Fabrikator Mini and CTC i3 Pro B
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

package.json 2.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. {
  2. "name": "auto-build",
  3. "displayName": "Auto Build Marlin",
  4. "description": "Auto Build Marlin for VS code",
  5. "version": "0.1.0",
  6. "publisher": "marlinfirmware",
  7. "engines": {
  8. "vscode": "^1.23.0"
  9. },
  10. "enableProposedApi": true,
  11. "categories": [
  12. "Other"
  13. ],
  14. "activationEvents": [
  15. "onCommand:piobuild",
  16. "onCommand:pioclean",
  17. "onCommand:pioupload",
  18. "onCommand:piotraceback"
  19. ],
  20. "main": "./extension",
  21. "contributes": {
  22. "viewsContainers": {
  23. "activitybar": [
  24. {
  25. "id": "auto-build",
  26. "title": "Auto Build Marlin",
  27. "icon": "media/AB.svg"
  28. }
  29. ]
  30. },
  31. "views": {
  32. "auto-build": [
  33. {
  34. "id": "autobuild",
  35. "name": " "
  36. }
  37. ]
  38. },
  39. "commands": [
  40. {
  41. "command": "piobuild",
  42. "title": "PIO Build",
  43. "icon": "resources/B32x32_white.svg"
  44. },
  45. {
  46. "command": "pioclean",
  47. "title": "PIO Clean",
  48. "icon": "resources/C32x32_white.svg"
  49. },
  50. {
  51. "command": "pioupload",
  52. "title": "PIO Upload",
  53. "icon": "resources/U32x32_white.svg"
  54. },
  55. {
  56. "command": "piotraceback",
  57. "title": "PIO Upload (traceback)",
  58. "icon": "resources/Ut32x32_white.svg"
  59. }
  60. ],
  61. "menus": {
  62. "view/title": [
  63. {
  64. "command": "piobuild",
  65. "group": "navigation@1"
  66. },
  67. {
  68. "command": "pioclean",
  69. "group": "navigation@2"
  70. },
  71. {
  72. "command": "pioupload",
  73. "group": "navigation@3"
  74. },
  75. {
  76. "command": "piotraceback",
  77. "group": "navigation@4"
  78. }
  79. ]
  80. }
  81. },
  82. "scripts": {
  83. "vscode:prepublish": "npm run compile",
  84. "compile": "tsc -p ./",
  85. "watch": "tsc -watch -p ./",
  86. "postinstall": "node ./node_modules/vscode/bin/install",
  87. "test": "npm run compile && node ./node_modules/vscode/bin/test"
  88. },
  89. "devDependencies": {
  90. "vscode": "^1.1.17",
  91. "typescript": "^2.6.1",
  92. "tslint": "^5.8.0",
  93. "@types/node": "^7.0.43",
  94. "@types/mocha": "^2.2.42"
  95. }
  96. }