package.json 1.6 KB

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