bw-hspc-contest-env/extension/bwcontest/package.json

110 lines
2.5 KiB
JSON

{
"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": {
"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"
},
"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": [
{
"command": "bwcontest.helloWorld",
"category": "BWContest",
"title": "Hello World"
},
{
"command": "bwcontest.askQuestion",
"category": "BWContest",
"title": "Ask Question"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "rollup -c && tsc -p ./",
"watch": "concurrently \"rollup -c -w\" \"tsc -watch -p ./\"",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^24.1.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-typescript": "^11.1.0",
"@tsconfig/svelte": "^4.0.1",
"@types/fs-extra": "^11.0.1",
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.1",
"@types/node": "16.x",
"@types/vscode": "^1.78.0",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"@vscode/test-electron": "^2.3.0",
"concurrently": "^8.0.1",
"eslint": "^8.39.0",
"glob": "^8.1.0",
"mocha": "^10.2.0",
"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": {
"axios": "^1.4.0",
"fs-extra": "^11.1.1",
"tree-kill": "^1.2.2",
"vsce": "^2.15.0"
}
}