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": {
|
|
|
|
"vscode": "^1.78.0"
|
|
|
|
},
|
|
|
|
"categories": [
|
|
|
|
"Other"
|
|
|
|
],
|
|
|
|
"activationEvents": [],
|
|
|
|
"main": "./out/extension.js",
|
|
|
|
"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"
|
|
|
|
},
|
|
|
|
"BWContest.repoClonePath": {
|
|
|
|
"type": "string",
|
|
|
|
"default": "",
|
|
|
|
"description": "The path where the repos are cloned to"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
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-05-06 00:01:27 -04:00
|
|
|
"compile": "rollup -c && tsc -p ./",
|
|
|
|
"watch": "concurrently \"rollup -c -w\" \"tsc -watch -p ./\"",
|
2023-05-04 22:32:46 -04:00
|
|
|
"pretest": "npm run compile && npm run lint",
|
|
|
|
"lint": "eslint src --ext ts",
|
|
|
|
"test": "node ./out/test/runTest.js"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-05-06 00:01:27 -04:00
|
|
|
"@rollup/plugin-commonjs": "^24.1.0",
|
|
|
|
"@rollup/plugin-node-resolve": "^15.0.2",
|
|
|
|
"@rollup/plugin-typescript": "^11.1.0",
|
|
|
|
"@tsconfig/svelte": "^4.0.1",
|
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",
|
|
|
|
"@types/node": "16.x",
|
2023-05-06 00:01:27 -04:00
|
|
|
"@types/vscode": "^1.78.0",
|
2023-05-04 22:32:46 -04:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.59.1",
|
|
|
|
"@typescript-eslint/parser": "^5.59.1",
|
2023-05-06 00:01:27 -04:00
|
|
|
"@vscode/test-electron": "^2.3.0",
|
|
|
|
"concurrently": "^8.0.1",
|
2023-05-04 22:32:46 -04:00
|
|
|
"eslint": "^8.39.0",
|
|
|
|
"glob": "^8.1.0",
|
|
|
|
"mocha": "^10.2.0",
|
2023-05-06 00:01:27 -04:00
|
|
|
"postcss": "^8.4.23",
|
|
|
|
"rollup-plugin-css-only": "^4.3.0",
|
|
|
|
"rollup-plugin-postcss": "^4.0.2",
|
|
|
|
"rollup-plugin-svelte": "^7.1.4",
|
|
|
|
"rollup-plugin-terser": "^7.0.2",
|
|
|
|
"svelte": "^3.59.0",
|
|
|
|
"svelte-check": "^3.3.1",
|
|
|
|
"svelte-preprocess": "^5.0.3",
|
|
|
|
"typescript": "^5.0.4"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2023-05-06 11:33:10 -04:00
|
|
|
"axios": "^1.4.0",
|
|
|
|
"fs-extra": "^11.1.1",
|
|
|
|
"vsce": "^2.15.0"
|
2023-05-04 22:32:46 -04:00
|
|
|
}
|
2023-05-04 22:09:35 -04:00
|
|
|
}
|