2023-05-04 22:09:35 -04:00
|
|
|
{
|
2023-05-04 22:32:46 -04:00
|
|
|
"name": "bwcontest",
|
|
|
|
"displayName": "BWContest",
|
|
|
|
"description": "The student extension for BW's HSPC",
|
|
|
|
"version": "0.0.1",
|
|
|
|
"engines": {
|
2023-08-26 15:48:29 -04:00
|
|
|
"vscode": "^1.81.0"
|
2023-05-04 22:32:46 -04:00
|
|
|
},
|
|
|
|
"categories": [
|
|
|
|
"Other"
|
|
|
|
],
|
|
|
|
"activationEvents": [],
|
2023-08-26 15:48:29 -04:00
|
|
|
"main": "./out/main.js",
|
2023-05-04 22:32:46 -04:00
|
|
|
"contributes": {
|
2023-05-06 11:33:10 -04:00
|
|
|
"configuration": {
|
|
|
|
"title": "BWContest",
|
|
|
|
"properties": {
|
|
|
|
"BWContest.repoBaseUrl": {
|
|
|
|
"type": "string",
|
|
|
|
"default": "",
|
|
|
|
"description": "Base URL for where to clone repos from"
|
|
|
|
},
|
2023-08-26 10:33:31 -04:00
|
|
|
"BWContest.webUrl": {
|
|
|
|
"type": "string",
|
|
|
|
"default": "",
|
|
|
|
"description": "URL for the contest website"
|
|
|
|
},
|
2023-05-06 11:33:10 -04:00
|
|
|
"BWContest.repoClonePath": {
|
|
|
|
"type": "string",
|
|
|
|
"default": "",
|
|
|
|
"description": "The path where the repos are cloned to"
|
2023-05-07 16:30:42 -04:00
|
|
|
},
|
|
|
|
"BWContest.javaPath": {
|
|
|
|
"type": "string",
|
|
|
|
"default": "",
|
|
|
|
"description": "Path of java bin folder"
|
2023-05-06 11:33:10 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2023-05-06 00:01:27 -04:00
|
|
|
"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"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
2023-05-04 22:32:46 -04:00
|
|
|
"commands": [
|
|
|
|
{
|
|
|
|
"command": "bwcontest.helloWorld",
|
2023-05-06 00:01:27 -04:00
|
|
|
"category": "BWContest",
|
2023-05-04 22:32:46 -04:00
|
|
|
"title": "Hello World"
|
|
|
|
},
|
|
|
|
{
|
2023-05-06 00:01:27 -04:00
|
|
|
"command": "bwcontest.askQuestion",
|
|
|
|
"category": "BWContest",
|
|
|
|
"title": "Ask Question"
|
2023-05-04 22:32:46 -04:00
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"vscode:prepublish": "npm run compile",
|
2023-08-26 15:48:29 -04:00
|
|
|
"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\""
|
2023-05-04 22:32:46 -04:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-08-26 15:48:29 -04:00
|
|
|
"@rollup/plugin-commonjs": "^25.0.4",
|
2023-08-26 10:33:31 -04:00
|
|
|
"@rollup/plugin-node-resolve": "^15.2.1",
|
2023-08-26 15:48:29 -04:00
|
|
|
"@rollup/plugin-terser": "^0.4.3",
|
2023-08-26 15:09:14 -04:00
|
|
|
"@rollup/plugin-typescript": "^11.1.3",
|
|
|
|
"@tsconfig/svelte": "^5.0.2",
|
2023-05-06 11:33:10 -04:00
|
|
|
"@types/fs-extra": "^11.0.1",
|
2023-05-04 22:32:46 -04:00
|
|
|
"@types/glob": "^8.1.0",
|
|
|
|
"@types/mocha": "^10.0.1",
|
2023-08-26 15:48:29 -04:00
|
|
|
"@types/node": "20.x",
|
2023-08-26 10:33:31 -04:00
|
|
|
"@types/vscode": "^1.81.0",
|
2023-09-05 18:16:16 -04:00
|
|
|
"@typescript-eslint/eslint-plugin": "^6.6.0",
|
|
|
|
"@typescript-eslint/parser": "^6.6.0",
|
2023-08-26 10:33:31 -04:00
|
|
|
"@vscode/test-electron": "^2.3.4",
|
|
|
|
"concurrently": "^8.2.1",
|
2023-08-26 15:48:29 -04:00
|
|
|
"esbuild": "^0.19.2",
|
2023-08-26 10:33:31 -04:00
|
|
|
"eslint": "^8.48.0",
|
2023-09-05 18:16:16 -04:00
|
|
|
"glob": "^10.3.4",
|
2023-05-04 22:32:46 -04:00
|
|
|
"mocha": "^10.2.0",
|
2023-09-05 18:16:16 -04:00
|
|
|
"postcss": "^8.4.29",
|
2023-05-06 00:01:27 -04:00
|
|
|
"rollup-plugin-css-only": "^4.3.0",
|
|
|
|
"rollup-plugin-postcss": "^4.0.2",
|
2023-08-26 10:33:31 -04:00
|
|
|
"rollup-plugin-svelte": "^7.1.6",
|
2023-08-26 15:09:14 -04:00
|
|
|
"svelte": "^4.2.0",
|
2023-09-05 18:16:16 -04:00
|
|
|
"svelte-check": "^3.5.1",
|
2023-08-26 10:33:31 -04:00
|
|
|
"svelte-preprocess": "^5.0.4",
|
|
|
|
"typescript": "^5.2.2"
|
2023-05-06 00:01:27 -04:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2023-09-05 18:16:16 -04:00
|
|
|
"@vscode/vsce": "^2.21.0",
|
2023-08-26 15:48:29 -04:00
|
|
|
"axios": "^1.5.0",
|
2023-05-06 11:33:10 -04:00
|
|
|
"fs-extra": "^11.1.1",
|
2023-08-26 15:48:29 -04:00
|
|
|
"tree-kill": "^1.2.2"
|
2023-05-04 22:32:46 -04:00
|
|
|
}
|
2023-05-04 22:09:35 -04:00
|
|
|
}
|