{ "name": "bwcontest", "displayName": "BWContest", "description": "The student extension for BW's HSPC", "version": "0.0.1", "engines": { "vscode": "^1.84.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": [] }, "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", "format": "prettier --plugin prettier-plugin-svelte --write .", "watch": "concurrently \"rollup -c -w\" \"npm run esbuild-base -- --sourcemap --watch\"", "lint": "prettier --plugin prettier-plugin-svelte --check . && eslint ." }, "devDependencies": { "@rollup/plugin-commonjs": "^25.0.7", "@rollup/plugin-node-resolve": "^15.2.3", "@rollup/plugin-terser": "^0.4.4", "@rollup/plugin-typescript": "^11.1.5", "@tsconfig/svelte": "^5.0.2", "@types/fs-extra": "^11.0.3", "@types/glob": "^8.1.0", "@types/mocha": "^10.0.3", "@types/node": "20.x", "@types/vscode": "^1.84.0", "@typescript-eslint/eslint-plugin": "^6.9.1", "@typescript-eslint/parser": "^6.9.1", "@vscode/test-electron": "^2.3.6", "concurrently": "^8.2.2", "esbuild": "^0.19.5", "eslint": "^8.53.0", "eslint-config-prettier": "^9.0.0", "eslint-plugin-svelte": "^2.34.1", "glob": "^10.3.10", "mocha": "^10.2.0", "postcss": "^8.4.31", "prettier": "^3.0.3", "prettier-plugin-svelte": "^3.0.3", "rollup-plugin-css-only": "^4.5.0", "rollup-plugin-postcss": "^4.0.2", "rollup-plugin-svelte": "^7.1.6", "svelte": "^4.2.2", "svelte-check": "^3.5.2", "svelte-preprocess": "^5.0.4", "typescript": "^5.2.2" }, "dependencies": { "@vscode/vsce": "^2.22.0", "axios": "^1.6.0", "fs-extra": "^11.1.1", "isomorphic-git": "^1.25.0", "tree-kill": "^1.2.2", "url-join": "^5.0.0", "zod": "^3.22.4" } }