-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
85 lines (85 loc) · 2.4 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
{
"name": "debug-leetcode",
"displayName": "Debug LeetCode",
"description": "Solve LeetCode problems in VS Code and enjoy debugging",
"version": "0.2.3",
"author": "wangtao0101",
"publisher": "wangtao0101",
"license": "MIT",
"icon": "resources/LeetCode.png",
"engines": {
"vscode": "^1.42.0"
},
"repository": {
"type": "git",
"url": "https://github.com/wangtao0101/vscode-debug-leetcode"
},
"homepage": "https://github.com/wangtao0101/vscode-debug-leetcode/blob/master/README.md",
"categories": [
"Other",
"Snippets"
],
"keywords": [
"leetcode",
"algorithm",
"interview"
],
"preview": true,
"activationEvents": [
"onLanguage:javascriptreact",
"onLanguage:javascript",
"onLanguage:python",
"onLanguage:cpp"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "debug-leetcode.debugSolution",
"title": "Debug LeetCode",
"category": "Debug-LeetCode"
}
],
"configuration": {
"type": "object",
"title": "debug-leetcode configuration",
"properties": {
"debug-leetcode.miDebuggerPath": {
"type": "string",
"default": "",
"description": "gdb absolute path.",
"scope": "resource"
},
"debug-leetcode.cppCompiler": {
"type": "string",
"default": "gdb",
"enum": [
"gdb",
"clang"
],
"enumDescriptions": [
"gdb compiler",
"clang compiler"
],
"scope": "resource"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"format": "prettier --write \"src/**/*.ts\""
},
"devDependencies": {
"@types/fs-extra": "5.0.0",
"@types/node": "^7.0.43",
"@types/vscode": "1.42.0",
"prettier": "^2.0.3",
"typescript": "^3.8.0"
},
"dependencies": {
"fs-extra": "^6.0.1"
}
}