12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- {
- "name": "acmhelper-vscode",
- "displayName": "acmhelper-vscode",
- "description": "Competitive Programming made simple",
- "version": "0.0.1",
- "engines": {
- "vscode": "^1.30.0"
- },
- "categories": [
- "Other"
- ],
- "activationEvents": [
- "onCommand:extension.addProblem",
- "onCommand:extension.addContest",
- "onCommand:extension.runSolution",
- "onCommand:extension.openTestcase",
- "onCommand:extension.addTestcase",
- "onCommand:extension.coding",
- "onCommand:extension.stress",
- "onCommand:extension.upgrade"
- ],
- "main": "./out/extension",
- "contributes": {
- "commands": [
- {
- "command": "extension.addProblem",
- "title": "ACMH: New Problem"
- },
- {
- "command": "extension.addContest",
- "title": "ACMH: New Contest"
- },
- {
- "command": "extension.runSolution",
- "title": "ACMH: Run"
- },
- {
- "command": "extension.openTestcase",
- "title": "ACMH: Open Test Case"
- },
- {
- "command": "extension.addTestcase",
- "title": "ACMH: Add Test Case"
- },
- {
- "command": "extension.coding",
- "title": "ACMH: View: Code"
- },
- {
- "command": "extension.stress",
- "title": "ACMH: Stress"
- },
- {
- "command": "extension.upgrade",
- "title": "ACMH: Upgrade"
- }
- ]
- },
- "scripts": {
- "vscode:prepublish": "npm run compile",
- "compile": "tsc -p ./",
- "watch": "tsc -watch -p ./",
- "postinstall": "node ./node_modules/vscode/bin/install",
- "test": "npm run compile && node ./node_modules/vscode/bin/test"
- },
- "devDependencies": {
- "typescript": "^3.1.4",
- "vscode": "^1.1.25",
- "tslint": "^5.8.0",
- "@types/node": "^8.10.25",
- "@types/mocha": "^2.2.42"
- },
- "dependencies": {
- "sync-request": "^6.0.0"
- }
- }
|