package.json 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. {
  2. "name": "acmx",
  3. "displayName": "acmX",
  4. "description": "Competitive Programming made simple",
  5. "icon": "images/logo.png",
  6. "publisher": "marx24",
  7. "version": "0.1.7",
  8. "license": "MIT",
  9. "engines": {
  10. "vscode": "^1.30.0"
  11. },
  12. "author": {
  13. "name": "Marcelo Fornet"
  14. },
  15. "categories": [
  16. "Other"
  17. ],
  18. "activationEvents": [
  19. "onCommand:acmx.addProblem",
  20. "onCommand:acmx.addContest",
  21. "onCommand:acmx.runSolution",
  22. "onCommand:acmx.openTestcase",
  23. "onCommand:acmx.addTestcase",
  24. "onCommand:acmx.coding",
  25. "onCommand:acmx.stress",
  26. "onCommand:acmx.upgrade",
  27. "onCommand:acmx.compile",
  28. "onCommand:acmx.debugTest"
  29. ],
  30. "main": "./out/extension",
  31. "contributes": {
  32. "configuration": [
  33. {
  34. "title": "acmX",
  35. "properties": {
  36. "acmx.run.timeLimit": {
  37. "type": "number",
  38. "default": 2,
  39. "description": "Maximum time limit in seconds to run the program on each test case.",
  40. "scope": "resource"
  41. },
  42. "acmx.execution.compile": {
  43. "type": "string",
  44. "default": "g++ -std=c++11 $PROGRAM -o $OUTPUT",
  45. "description": "Command to compile the program. Refer to the code as $PROGRAM, and output file as $OUTPUT.",
  46. "scope": "resource"
  47. },
  48. "acmx.execution.pythonPath": {
  49. "type": "string",
  50. "default": "/usr/bin/python3",
  51. "description": "Path to python executable.",
  52. "scope": "resource"
  53. },
  54. "acmx.configuration.templatePath": {
  55. "type": "string",
  56. "default": "",
  57. "description": "Path to template file. Leave empty to use default template.",
  58. "scope": "resource"
  59. },
  60. "acmx.configuration.solutionPath": {
  61. "type": "string",
  62. "default": ".",
  63. "description": "Path to folder where contest will be created and stored. To set active workspace use `.`",
  64. "scope": "resource"
  65. },
  66. "acmx.configuration.extension": {
  67. "type": "string",
  68. "default": "cpp",
  69. "description": "Extension of the programming language you will use to code solutions. Default `cpp` for c++",
  70. "scope": "resource"
  71. }
  72. }
  73. }
  74. ],
  75. "commands": [
  76. {
  77. "command": "acmx.addProblem",
  78. "title": "ACMX: New Problem"
  79. },
  80. {
  81. "command": "acmx.addContest",
  82. "title": "ACMX: New Contest"
  83. },
  84. {
  85. "command": "acmx.runSolution",
  86. "title": "ACMX: Run"
  87. },
  88. {
  89. "command": "acmx.openTestcase",
  90. "title": "ACMX: Open Test Case"
  91. },
  92. {
  93. "command": "acmx.addTestcase",
  94. "title": "ACMX: Add Test Case"
  95. },
  96. {
  97. "command": "acmx.coding",
  98. "title": "ACMX: View: Code"
  99. },
  100. {
  101. "command": "acmx.stress",
  102. "title": "ACMX: Stress"
  103. },
  104. {
  105. "command": "acmx.upgrade",
  106. "title": "ACMX: Upgrade"
  107. },
  108. {
  109. "command": "acmx.compile",
  110. "title": "ACMX: Compile"
  111. }
  112. ],
  113. "keybindings": [
  114. {
  115. "command": "acmx.compile",
  116. "key": "ctrl+alt+b"
  117. },
  118. {
  119. "command": "acmx.runSolution",
  120. "key": "ctrl+alt+l"
  121. },
  122. {
  123. "command": "acmx.stress",
  124. "key": "ctrl+alt+k"
  125. },
  126. {
  127. "command": "acmx.coding",
  128. "key": "ctrl+alt+o"
  129. }
  130. ]
  131. },
  132. "scripts": {
  133. "vscode:prepublish": "npm run compile",
  134. "compile": "tsc -p ./",
  135. "watch": "tsc -watch -p ./",
  136. "postinstall": "node ./node_modules/vscode/bin/install",
  137. "test": "npm run compile && node ./node_modules/vscode/bin/test"
  138. },
  139. "repository": {
  140. "type": "git",
  141. "url": "https://github.com/mfornet/acmx.git"
  142. },
  143. "bugs": {
  144. "url": "https://github.com/mfornet/acmx/issues",
  145. "email": "mfornet94@gmail.com"
  146. },
  147. "devDependencies": {
  148. "@types/got": "^9.3.0",
  149. "@types/mocha": "^2.2.42",
  150. "@types/node": "^8.10.25",
  151. "tslint": "^5.8.0",
  152. "typescript": "^3.1.4",
  153. "vscode": "^1.1.25"
  154. },
  155. "dependencies": {
  156. "got": "^9.5.0",
  157. "jssoup": "0.0.10",
  158. "sync-request": "^6.0.0",
  159. "unescape": "^1.0.1"
  160. }
  161. }