{ "name": "bwcontest", "displayName": "BWContest", "description": "The student extension for BW's HSPC", "version": "0.0.1", "engines": { "vscode": "^1.78.0" }, "categories": [ "Other" ], "activationEvents": [], "main": "./out/extension.js", "contributes": { "configuration": { "title": "BWContest", "properties": { "BWContest.repoBaseUrl": { "type": "string", "default": "", "description": "Base URL for where to clone repos from" }, "BWContest.webUrl": { "type": "string", "default": "", "description": "URL for the contest website" }, "BWContest.repoClonePath": { "type": "string", "default": "", "description": "The path where the repos are cloned to" }, "BWContest.javaPath": { "type": "string", "default": "", "description": "Path of java bin folder" } } }, "viewsContainers": { "activitybar": [ { "id": "bwcontest-sidebar-view", "title": "BWContest", "icon": "media/icon.png" } ] }, "views": { "bwcontest-sidebar-view": [ { "type": "webview", "id": "bwcontest-sidebar", "name": "BWContest", "icon": "media/icon.png", "contextualTitle": "BWContest" } ] }, "commands": [ { "command": "bwcontest.helloWorld", "category": "BWContest", "title": "Hello World" }, { "command": "bwcontest.askQuestion", "category": "BWContest", "title": "Ask Question" } ] }, "scripts": { "vscode:prepublish": "npm run compile", "compile": "rollup -c && tsc -p ./", "watch": "concurrently \"rollup -c -w\" \"tsc -watch -p ./\"", "pretest": "npm run compile && npm run lint", "lint": "eslint src --ext ts", "test": "node ./out/test/runTest.js" }, "devDependencies": { "@rollup/plugin-commonjs": "^24.1.0", "@rollup/plugin-node-resolve": "^15.2.1", "@rollup/plugin-typescript": "^11.1.3", "@tsconfig/svelte": "^5.0.2", "@types/fs-extra": "^11.0.1", "@types/glob": "^8.1.0", "@types/mocha": "^10.0.1", "@types/node": "16.x", "@types/vscode": "^1.81.0", "@typescript-eslint/eslint-plugin": "^5.59.1", "@typescript-eslint/parser": "^5.59.1", "@vscode/test-electron": "^2.3.4", "concurrently": "^8.2.1", "eslint": "^8.48.0", "glob": "^8.1.0", "mocha": "^10.2.0", "postcss": "^8.4.28", "rollup-plugin-css-only": "^4.3.0", "rollup-plugin-postcss": "^4.0.2", "rollup-plugin-svelte": "^7.1.6", "rollup-plugin-terser": "^7.0.2", "svelte": "^4.2.0", "svelte-check": "^3.5.0", "svelte-preprocess": "^5.0.4", "typescript": "^5.2.2" }, "dependencies": { "axios": "^1.4.0", "fs-extra": "^11.1.1", "tree-kill": "^1.2.2", "vsce": "^2.15.0" } }