{ "name": "bwcontest", "displayName": "BWContest", "description": "The student extension for BW's HSPC", "version": "0.0.1", "engines": { "vscode": "^1.81.0" }, "categories": [ "Other" ], "activationEvents": [], "main": "./out/main.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", "esbuild-base": "esbuild ./src/extension.ts --bundle --outfile=out/main.js --external:vscode --format=cjs --platform=node", "esbuild": "npm run esbuild-base -- --sourcemap", "compile": "rollup -c && npm run esbuild-base -- --minify", "watch": "concurrently \"rollup -c -w\" \"npm run esbuild-base -- --sourcemap --watch\"" }, "devDependencies": { "@rollup/plugin-commonjs": "^25.0.4", "@rollup/plugin-node-resolve": "^15.2.1", "@rollup/plugin-terser": "^0.4.3", "@rollup/plugin-typescript": "^11.1.4", "@tsconfig/svelte": "^5.0.2", "@types/fs-extra": "^11.0.2", "@types/glob": "^8.1.0", "@types/mocha": "^10.0.2", "@types/node": "20.x", "@types/vscode": "^1.82.0", "@typescript-eslint/eslint-plugin": "^6.7.4", "@typescript-eslint/parser": "^6.7.4", "@vscode/test-electron": "^2.3.4", "concurrently": "^8.2.1", "esbuild": "^0.19.4", "eslint": "^8.50.0", "glob": "^10.3.10", "mocha": "^10.2.0", "postcss": "^8.4.31", "rollup-plugin-css-only": "^4.3.0", "rollup-plugin-postcss": "^4.0.2", "rollup-plugin-svelte": "^7.1.6", "svelte": "^4.2.1", "svelte-check": "^3.5.2", "svelte-preprocess": "^5.0.4", "typescript": "^5.2.2" }, "dependencies": { "@vscode/vsce": "^2.21.1", "axios": "^1.5.1", "fs-extra": "^11.1.1", "tree-kill": "^1.2.2" } }