package.json 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. {
  2. "name": "acmx",
  3. "displayName": "acmX",
  4. "description": "Competitive Programming made simple",
  5. "icon": "images/logo.png",
  6. "publisher": "marx24",
  7. "version": "0.1.1",
  8. "license": "MIT",
  9. "engines": {
  10. "vscode": "^1.30.0"
  11. },
  12. "author": {
  13. "name": "marx"
  14. },
  15. "categories": [
  16. "Other"
  17. ],
  18. "activationEvents": [
  19. "onCommand:extension.addProblem",
  20. "onCommand:extension.addContest",
  21. "onCommand:extension.runSolution",
  22. "onCommand:extension.openTestcase",
  23. "onCommand:extension.addTestcase",
  24. "onCommand:extension.coding",
  25. "onCommand:extension.stress",
  26. "onCommand:extension.upgrade",
  27. "onCommand:extension.compile",
  28. "onCommand:extension.debugTest"
  29. ],
  30. "main": "./out/extension",
  31. "contributes": {
  32. "commands": [
  33. {
  34. "command": "extension.addProblem",
  35. "title": "ACMX: New Problem"
  36. },
  37. {
  38. "command": "extension.addContest",
  39. "title": "ACMX: New Contest"
  40. },
  41. {
  42. "command": "extension.runSolution",
  43. "title": "ACMX: Run"
  44. },
  45. {
  46. "command": "extension.openTestcase",
  47. "title": "ACMX: Open Test Case"
  48. },
  49. {
  50. "command": "extension.addTestcase",
  51. "title": "ACMX: Add Test Case"
  52. },
  53. {
  54. "command": "extension.coding",
  55. "title": "ACMX: View: Code"
  56. },
  57. {
  58. "command": "extension.stress",
  59. "title": "ACMX: Stress"
  60. },
  61. {
  62. "command": "extension.upgrade",
  63. "title": "ACMX: Upgrade"
  64. },
  65. {
  66. "command": "extension.compile",
  67. "title": "ACMX: Compile"
  68. }
  69. ]
  70. },
  71. "scripts": {
  72. "vscode:prepublish": "npm run compile",
  73. "compile": "tsc -p ./",
  74. "watch": "tsc -watch -p ./",
  75. "postinstall": "node ./node_modules/vscode/bin/install",
  76. "test": "npm run compile && node ./node_modules/vscode/bin/test"
  77. },
  78. "repository": {
  79. "type": "git",
  80. "url": "https://github.com/mfornet/acmx.git"
  81. },
  82. "bugs": {
  83. "url": "https://github.com/mfornet/acmx/issues",
  84. "email": "mfornet94@gmail.com"
  85. },
  86. "devDependencies": {
  87. "@types/got": "^9.3.0",
  88. "@types/mocha": "^2.2.42",
  89. "@types/node": "^8.10.25",
  90. "tslint": "^5.8.0",
  91. "typescript": "^3.1.4",
  92. "vscode": "^1.1.25"
  93. },
  94. "dependencies": {
  95. "got": "^9.5.0",
  96. "jssoup": "0.0.10",
  97. "sync-request": "^6.0.0",
  98. "unescape": "^1.0.1"
  99. }
  100. }