-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
177 lines (177 loc) · 3.81 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
{
"name": "tim-ide",
"displayName": "TIM-IDE",
"description": "",
"authors": [
{
"name": "Hannes Koivusipilä"
},
{
"name": "Stella Palenius"
}
],
"version": "0.0.1",
"engines": {
"vscode": "^1.86.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"contributes": {
"menus": {
"editor/title": [
{
"command": "tide.showTaskPanel",
"group": "navigation"
}
]
},
"commands": [
{
"command": "tide.hello-world",
"title": "Hello World"
},
{
"command": "tide.login",
"title": "Login",
"category": "TIM-IDE"
},
{
"command": "tide.logout",
"title": "Log out",
"category": "TIM-IDE"
},
{
"command": "tide.listCourses",
"title": "List Available Courses",
"category": "TIM-IDE"
},
{
"command": "tide.pull",
"title": "Pull either all tasks for a course or a specific task."
},
{
"command": "tide.push",
"title": "Push either all tasks for a course or a specific task."
},
{
"command": "tide.showCourses",
"title": "Show My Courses",
"category": "TIM-IDE"
},
{
"command": "tide.clearCourseCache",
"title": "Clear local course metadata",
"category": "TIM-IDE"
},
{
"command": "tide.updateCoursesFromTim",
"title": "Update courses from TIM",
"category": "TIM-IDE"
},
{
"command": "tide.openSettings",
"title": "Open Settings",
"category": "TIM-IDE"
},
{
"command": "tide.showTaskPanel",
"title": "Show Task Panel",
"category": "TIM-IDE",
"icon": "$(mortar-board)"
},
{
"command": "tide.debug",
"title": "Magic Button"
},
{
"command": "tide.downloadTaskSet",
"title": "Download all tasks from task set",
"category": "TIM-IDE"
},
{
"command": "tide.submitTask",
"title": "Submit exercise to TIM",
"category": "TIM-IDE"
},
{
"command": "tide.clearLocalExtensionData",
"title": "Clear local extension data",
"category": "TIM-IDE"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "tide-extension",
"title": "TIM-IDE",
"icon": "./media/timlogovscode.png"
}
]
},
"views": {
"tide-extension": [
{
"type": "webview",
"id": "tide-sidebar",
"name": "Menu",
"icon": "./media/timlogovscode.png",
"contextualTitle": "TIM-IDE"
}
]
},
"configuration": {
"title": "TIM-IDE",
"properties": {
"TIM-IDE.fileDownloadPath": {
"type": "string",
"description": "The location where the exercise folders will be downloaded."
},
"TIM-IDE.cliPath": {
"type": "string",
"description": "Path to CLI tool"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p .",
"svelte-watch": "rollup -c -w --bundleConfigAsCjs",
"svelte-compile": "rollup -c --bundleConfigAsCjs",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "vscode-test"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@tsconfig/svelte": "^5.0.2",
"@types/mocha": "^10.0.6",
"@types/node": "18.x",
"@types/vscode": "^1.86.0",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"@vscode/test-cli": "^0.0.6",
"@vscode/test-electron": "^2.3.9",
"eslint": "^8.56.0",
"prettier": "^3.3.2",
"prettier-plugin-svelte": "^3.2.4",
"rollup": "^4.12.1",
"rollup-plugin-svelte": "^7.2.0",
"svelte": "^4.2.12",
"svelte-check": "^3.6.6",
"svelte-preprocess": "^5.1.3",
"typescript": "^5.4.2"
},
"dependencies": {
"rollup-plugin-css-only": "^4.5.2"
}
}