package.json 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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. "engines": {
  9. "vscode": "^1.30.0"
  10. },
  11. "categories": [
  12. "Other"
  13. ],
  14. "activationEvents": [
  15. "onCommand:extension.addProblem",
  16. "onCommand:extension.addContest",
  17. "onCommand:extension.runSolution",
  18. "onCommand:extension.openTestcase",
  19. "onCommand:extension.addTestcase",
  20. "onCommand:extension.coding",
  21. "onCommand:extension.stress",
  22. "onCommand:extension.upgrade",
  23. "onCommand:extension.debugTest"
  24. ],
  25. "main": "./out/extension",
  26. "contributes": {
  27. "commands": [
  28. {
  29. "command": "extension.addProblem",
  30. "title": "ACMH: New Problem"
  31. },
  32. {
  33. "command": "extension.addContest",
  34. "title": "ACMH: New Contest"
  35. },
  36. {
  37. "command": "extension.runSolution",
  38. "title": "ACMH: Run"
  39. },
  40. {
  41. "command": "extension.openTestcase",
  42. "title": "ACMH: Open Test Case"
  43. },
  44. {
  45. "command": "extension.addTestcase",
  46. "title": "ACMH: Add Test Case"
  47. },
  48. {
  49. "command": "extension.coding",
  50. "title": "ACMH: View: Code"
  51. },
  52. {
  53. "command": "extension.stress",
  54. "title": "ACMH: Stress"
  55. },
  56. {
  57. "command": "extension.upgrade",
  58. "title": "ACMH: Upgrade"
  59. }
  60. ]
  61. },
  62. "scripts": {
  63. "vscode:prepublish": "npm run compile",
  64. "compile": "tsc -p ./",
  65. "watch": "tsc -watch -p ./",
  66. "postinstall": "node ./node_modules/vscode/bin/install",
  67. "test": "npm run compile && node ./node_modules/vscode/bin/test"
  68. },
  69. "devDependencies": {
  70. "@types/got": "^9.3.0",
  71. "@types/mocha": "^2.2.42",
  72. "@types/node": "^8.10.25",
  73. "tslint": "^5.8.0",
  74. "typescript": "^3.1.4",
  75. "vscode": "^1.1.25"
  76. },
  77. "dependencies": {
  78. "got": "^9.5.0",
  79. "jssoup": "0.0.10",
  80. "sync-request": "^6.0.0",
  81. "unescape": "^1.0.1"
  82. }
  83. }