package.json 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. {
  2. "name": "acmhelper-vscode",
  3. "displayName": "acmhelper-vscode",
  4. "description": "Competitive Programming made simple",
  5. "publisher": "marx24",
  6. "version": "0.1.0",
  7. "engines": {
  8. "vscode": "^1.30.0"
  9. },
  10. "categories": [
  11. "Other"
  12. ],
  13. "activationEvents": [
  14. "onCommand:extension.addProblem",
  15. "onCommand:extension.addContest",
  16. "onCommand:extension.runSolution",
  17. "onCommand:extension.openTestcase",
  18. "onCommand:extension.addTestcase",
  19. "onCommand:extension.coding",
  20. "onCommand:extension.stress",
  21. "onCommand:extension.upgrade"
  22. ],
  23. "main": "./out/extension",
  24. "contributes": {
  25. "commands": [
  26. {
  27. "command": "extension.addProblem",
  28. "title": "ACMH: New Problem"
  29. },
  30. {
  31. "command": "extension.addContest",
  32. "title": "ACMH: New Contest"
  33. },
  34. {
  35. "command": "extension.runSolution",
  36. "title": "ACMH: Run"
  37. },
  38. {
  39. "command": "extension.openTestcase",
  40. "title": "ACMH: Open Test Case"
  41. },
  42. {
  43. "command": "extension.addTestcase",
  44. "title": "ACMH: Add Test Case"
  45. },
  46. {
  47. "command": "extension.coding",
  48. "title": "ACMH: View: Code"
  49. },
  50. {
  51. "command": "extension.stress",
  52. "title": "ACMH: Stress"
  53. },
  54. {
  55. "command": "extension.upgrade",
  56. "title": "ACMH: Upgrade"
  57. }
  58. ]
  59. },
  60. "scripts": {
  61. "vscode:prepublish": "npm run compile",
  62. "compile": "tsc -p ./",
  63. "watch": "tsc -watch -p ./",
  64. "postinstall": "node ./node_modules/vscode/bin/install",
  65. "test": "npm run compile && node ./node_modules/vscode/bin/test"
  66. },
  67. "devDependencies": {
  68. "typescript": "^3.1.4",
  69. "vscode": "^1.1.25",
  70. "tslint": "^5.8.0",
  71. "@types/node": "^8.10.25",
  72. "@types/mocha": "^2.2.42"
  73. },
  74. "dependencies": {
  75. "sync-request": "^6.0.0"
  76. }
  77. }