123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- {
- "name": "acmx",
- "displayName": "acmX",
- "description": "Competitive Programming made simple",
- "icon": "images/logo.png",
- "publisher": "marx24",
- "version": "0.1.1",
- "license": "MIT",
- "engines": {
- "vscode": "^1.30.0"
- },
- "author": {
- "name": "marx"
- },
- "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": {
- "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"
- }
- }
|