{ "name": "acmx", "displayName": "acmX", "description": "Competitive Programming made simple", "icon": "images/logo.png", "publisher": "marx24", "version": "0.1.4", "license": "MIT", "engines": { "vscode": "^1.30.0" }, "author": { "name": "Marcelo Fornet" }, "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", "onCommand:extension.compile", "onCommand:extension.debugTest" ], "main": "./out/extension", "contributes": { "configuration": [ { "title": "acmX", "properties": { "acmx.run.timeLimit": { "type": "number", "default": 2, "description": "Maximum time limit in seconds to run the program on each test case.", "scope": "resource" }, "acmx.execution.compileCpp": { "type": "string", "default": "g++ -std=c++11 $PROGRAM -o $OUTPUT", "description": "Command to compile the program. Refer to the code as $PROGRAM, and output file as $OUTPUT.", "scope": "resource" }, "acmx.execution.pythonPath": { "type": "string", "default": "/usr/bin/python3", "description": "Path to python executable.", "scope": "resource" }, "acmx.configuration.templatePath": { "type": "string", "default": "", "description": "Path to template file. Leave empty to use default template.", "scope": "resource" } } } ], "commands": [ { "command": "extension.addProblem", "title": "ACMX: New Problem" }, { "command": "extension.addContest", "title": "ACMX: New Contest" }, { "command": "extension.runSolution", "title": "ACMX: Run" }, { "command": "extension.openTestcase", "title": "ACMX: Open Test Case" }, { "command": "extension.addTestcase", "title": "ACMX: Add Test Case" }, { "command": "extension.coding", "title": "ACMX: View: Code" }, { "command": "extension.stress", "title": "ACMX: Stress" }, { "command": "extension.upgrade", "title": "ACMX: Upgrade" }, { "command": "extension.compile", "title": "ACMX: Compile" } ] }, "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" }, "repository": { "type": "git", "url": "https://github.com/mfornet/acmx.git" }, "bugs": { "url": "https://github.com/mfornet/acmx/issues", "email": "mfornet94@gmail.com" }, "devDependencies": { "@types/got": "^9.3.0", "@types/mocha": "^2.2.42", "@types/node": "^8.10.25", "tslint": "^5.8.0", "typescript": "^3.1.4", "vscode": "^1.1.25" }, "dependencies": { "got": "^9.5.0", "jssoup": "0.0.10", "sync-request": "^6.0.0", "unescape": "^1.0.1" } }