113 lines
2.9 KiB
JSON
113 lines
2.9 KiB
JSON
{
|
|
"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.6",
|
|
"@tsconfig/svelte": "^5.0.2",
|
|
"@types/fs-extra": "^11.0.4",
|
|
"@types/glob": "^8.1.0",
|
|
"@types/mocha": "^10.0.6",
|
|
"@types/node": "20.x",
|
|
"@types/vscode": "^1.85.0",
|
|
"@typescript-eslint/eslint-plugin": "^6.19.0",
|
|
"@typescript-eslint/parser": "^6.19.0",
|
|
"@vscode/test-electron": "^2.3.8",
|
|
"concurrently": "^8.2.2",
|
|
"esbuild": "^0.19.11",
|
|
"eslint": "^8.56.0",
|
|
"eslint-config-prettier": "^9.1.0",
|
|
"eslint-plugin-svelte": "^2.35.1",
|
|
"glob": "^10.3.10",
|
|
"mocha": "^10.2.0",
|
|
"postcss": "^8.4.33",
|
|
"prettier": "^3.2.2",
|
|
"prettier-plugin-svelte": "^3.1.2",
|
|
"rollup-plugin-css-only": "^4.5.2",
|
|
"rollup-plugin-postcss": "^4.0.2",
|
|
"rollup-plugin-svelte": "^7.1.6",
|
|
"svelte": "^4.2.8",
|
|
"svelte-check": "^3.6.3",
|
|
"svelte-preprocess": "^5.1.3",
|
|
"typescript": "^5.3.3"
|
|
},
|
|
"dependencies": {
|
|
"@vscode/vsce": "^2.22.0",
|
|
"axios": "^1.6.5",
|
|
"fs-extra": "^11.2.0",
|
|
"isomorphic-git": "^1.25.3",
|
|
"tree-kill": "^1.2.2",
|
|
"url-join": "^5.0.0",
|
|
"zod": "^3.22.4"
|
|
}
|
|
}
|