-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.36 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.36 KB
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
{
"name": "mdr-in-vs-code",
"displayName": "Mdr in VS Code",
"publisher": "mdr",
"description": "C language single-file runner",
"version": "0.1.2",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Mdr-C-Tutorial/Mdr-in-VS-Code.git"
},
"icon": "images/icon.png",
"engines": {
"vscode": "^1.103.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:c",
"onLanguage:cpp"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "c-runner.run",
"title": "Run C File"
},
{
"command": "c-runner.downloadCompiler",
"title": "下载并配置 C/C++ 编译器"
}
]
},
"scripts": {
"vscode:prepublish": "yarn run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "yarn run compile && yarn run lint",
"lint": "eslint src",
"test": "vscode-test"
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "22.x",
"@types/vscode": "^1.103.0",
"@typescript-eslint/eslint-plugin": "^8.39.0",
"@typescript-eslint/parser": "^8.39.0",
"@vscode/test-cli": "^0.0.11",
"@vscode/test-electron": "^2.5.2",
"eslint": "^9.32.0",
"typescript": "^5.9.2"
},
"dependencies": {
"axios": "^1.11.0",
"extract-zip": "^2.0.1"
}
}