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-10-15 18:35:49 -04:00
|
|
|
"vscode": "^1.83.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-10-15 18:35:49 -04:00
|
|
|
"commands": []
|
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",
|
2023-10-15 18:35:49 -04:00
|
|
|
"format": "prettier --plugin prettier-plugin-svelte --write .",
|
2023-08-26 15:48:29 -04:00
|
|
|
"watch": "concurrently \"rollup -c -w\" \"npm run esbuild-base -- --sourcemap --watch\""
|
2023-05-04 22:32:46 -04:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-10-15 18:35:49 -04:00
|
|
|
"@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",
|
2023-08-26 15:09:14 -04:00
|
|
|
"@tsconfig/svelte": "^5.0.2",
|
2023-10-02 13:38:53 -04:00
|
|
|
"@types/fs-extra": "^11.0.2",
|
2023-05-04 22:32:46 -04:00
|
|
|
"@types/glob": "^8.1.0",
|
2023-10-02 13:38:53 -04:00
|
|
|
"@types/mocha": "^10.0.2",
|
2023-08-26 15:48:29 -04:00
|
|
|
"@types/node": "20.x",
|
2023-10-15 18:35:49 -04:00
|
|
|
"@types/vscode": "^1.83.0",
|
|
|
|
"@typescript-eslint/eslint-plugin": "^6.7.5",
|
|
|
|
"@typescript-eslint/parser": "^6.7.5",
|
|
|
|
"@vscode/test-electron": "^2.3.5",
|
2023-08-26 10:33:31 -04:00
|
|
|
"concurrently": "^8.2.1",
|
2023-10-02 13:38:53 -04:00
|
|
|
"esbuild": "^0.19.4",
|
2023-10-15 18:35:49 -04:00
|
|
|
"eslint": "^8.51.0",
|
2023-10-02 13:38:53 -04:00
|
|
|
"glob": "^10.3.10",
|
2023-05-04 22:32:46 -04:00
|
|
|
"mocha": "^10.2.0",
|
2023-10-02 13:38:53 -04:00
|
|
|
"postcss": "^8.4.31",
|
2023-10-15 18:35:49 -04:00
|
|
|
"prettier": "^3.0.3",
|
|
|
|
"prettier-plugin-svelte": "^3.0.3",
|
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-10-02 13:38:53 -04:00
|
|
|
"svelte": "^4.2.1",
|
|
|
|
"svelte-check": "^3.5.2",
|
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-10-02 13:38:53 -04:00
|
|
|
"@vscode/vsce": "^2.21.1",
|
|
|
|
"axios": "^1.5.1",
|
2023-05-06 11:33:10 -04:00
|
|
|
"fs-extra": "^11.1.1",
|
2023-10-15 18:44:17 -04:00
|
|
|
"isomorphic-git": "^1.24.5",
|
2023-10-15 18:35:49 -04:00
|
|
|
"tree-kill": "^1.2.2",
|
|
|
|
"url-join": "^5.0.0"
|
2023-05-04 22:32:46 -04:00
|
|
|
}
|
2023-05-04 22:09:35 -04:00
|
|
|
}
|