-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.73 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "dodona-exercise-plugin",
"displayName": "Dodona Exercises",
"description": "Assistance for writing exercises for the Dodona platform.",
"icon": "icon.png",
"repository": "https://github.com/dodona-edu/vscode-exercise-plugin",
"publisher": "dodona",
"version": "0.0.3",
"type": "module",
"engines": {
"vscode": "^1.80.1"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"browser": "./dist/web/extension.js",
"contributes": {
"jsonValidation": [
{
"fileMatch": [
"config.json",
"dirconfig.json"
],
"url": "./schemas/config.schema.json"
}
],
"yamlValidation": [
{
"fileMatch": [
"suite.yaml",
"suite.yml"
],
"url": "https://raw.githubusercontent.com/dodona-edu/universal-judge/master/tested/dsl/schema.json"
}
]
},
"extensionDependencies": [
"redhat.vscode-yaml"
],
"scripts": {
"vscode:prepublish": "npm run package-web",
"vscode:publish": "vsce publish",
"compile-web": "webpack",
"watch-web": "webpack --watch",
"package-web": "webpack --mode production --devtool hidden-source-map",
"lint": "eslint src --ext ts",
"run-in-browser": "vscode-test-web --browserType=none --extensionDevelopmentPath=. ."
},
"devDependencies": {
"@types/vscode": "^1.87.0",
"eslint": "^8.57.0",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"typescript": "^5.4.3",
"ts-loader": "^9.5.1",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.1",
"@types/webpack-env": "^1.18.4",
"process": "^0.11.10",
"@vscode/test-web": "^0.0.53",
"@vscode/vsce": "^2.24.0"
}
}