package.json 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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.addTestcase",
  17. "onCommand:extension.coding",
  18. "onCommand:extension.stress",
  19. "onCommand:extension.upgrade"
  20. ],
  21. "main": "./out/extension",
  22. "contributes": {
  23. "commands": [
  24. {
  25. "command": "extension.addProblem",
  26. "title": "ACMH: Add Problem"
  27. },
  28. {
  29. "command": "extension.addContest",
  30. "title": "ACMH: Add Contest"
  31. },
  32. {
  33. "command": "extension.runSolution",
  34. "title": "ACMH: Run"
  35. },
  36. {
  37. "command": "extension.addTestcase",
  38. "title": "ACMH: Add Test Case"
  39. },
  40. {
  41. "command": "extension.coding",
  42. "title": "ACMH: View: Code"
  43. },
  44. {
  45. "command": "extension.stress",
  46. "title": "ACMH: Stress"
  47. },
  48. {
  49. "command": "extension.upgrade",
  50. "title": "ACMH: Upgrade"
  51. }
  52. ]
  53. },
  54. "scripts": {
  55. "vscode:prepublish": "npm run compile",
  56. "compile": "tsc -p ./",
  57. "watch": "tsc -watch -p ./",
  58. "postinstall": "node ./node_modules/vscode/bin/install",
  59. "test": "npm run compile && node ./node_modules/vscode/bin/test"
  60. },
  61. "devDependencies": {
  62. "typescript": "^3.1.4",
  63. "vscode": "^1.1.25",
  64. "tslint": "^5.8.0",
  65. "@types/node": "^8.10.25",
  66. "@types/mocha": "^2.2.42"
  67. }
  68. }