package.json 5.8 KB

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