package.json 2.2 KB

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