package.json 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. {
  2. "name": "acmx",
  3. "displayName": "acmX",
  4. "description": "Competitive Programming made simple",
  5. "icon": "images/icpc-logo-nobg.png",
  6. "publisher": "marx24",
  7. "version": "0.1.1",
  8. "license": "MIT",
  9. "engines": {
  10. "vscode": "^1.30.0"
  11. },
  12. "author": {
  13. "name": "marx"
  14. },
  15. "categories": [
  16. "Other"
  17. ],
  18. "activationEvents": [
  19. "onCommand:extension.addProblem",
  20. "onCommand:extension.addContest",
  21. "onCommand:extension.runSolution",
  22. "onCommand:extension.openTestcase",
  23. "onCommand:extension.addTestcase",
  24. "onCommand:extension.coding",
  25. "onCommand:extension.stress",
  26. "onCommand:extension.upgrade",
  27. "onCommand:extension.debugTest"
  28. ],
  29. "main": "./out/extension",
  30. "contributes": {
  31. "commands": [
  32. {
  33. "command": "extension.addProblem",
  34. "title": "ACMH: New Problem"
  35. },
  36. {
  37. "command": "extension.addContest",
  38. "title": "ACMH: New Contest"
  39. },
  40. {
  41. "command": "extension.runSolution",
  42. "title": "ACMH: Run"
  43. },
  44. {
  45. "command": "extension.openTestcase",
  46. "title": "ACMH: Open Test Case"
  47. },
  48. {
  49. "command": "extension.addTestcase",
  50. "title": "ACMH: Add Test Case"
  51. },
  52. {
  53. "command": "extension.coding",
  54. "title": "ACMH: View: Code"
  55. },
  56. {
  57. "command": "extension.stress",
  58. "title": "ACMH: Stress"
  59. },
  60. {
  61. "command": "extension.upgrade",
  62. "title": "ACMH: Upgrade"
  63. }
  64. ]
  65. },
  66. "scripts": {
  67. "vscode:prepublish": "npm run compile",
  68. "compile": "tsc -p ./",
  69. "watch": "tsc -watch -p ./",
  70. "postinstall": "node ./node_modules/vscode/bin/install",
  71. "test": "npm run compile && node ./node_modules/vscode/bin/test"
  72. },
  73. "repository": {
  74. "type": "git",
  75. "url": "https://github.com/mfornet/acmx.git"
  76. },
  77. "bugs": {
  78. "url": "https://github.com/mfornet/acmx/issues",
  79. "email": "mfornet94@gmail.com"
  80. },
  81. "devDependencies": {
  82. "@types/got": "^9.3.0",
  83. "@types/mocha": "^2.2.42",
  84. "@types/node": "^8.10.25",
  85. "tslint": "^5.8.0",
  86. "typescript": "^3.1.4",
  87. "vscode": "^1.1.25"
  88. },
  89. "dependencies": {
  90. "got": "^9.5.0",
  91. "jssoup": "0.0.10",
  92. "sync-request": "^6.0.0",
  93. "unescape": "^1.0.1"
  94. }
  95. }