-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.19 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.19 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
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": "leetcode-stress-tester",
"displayName": "LeetCode Stress Tester",
"publisher": "ShubhamNegi04",
"description": "In-editor LeetCode judge results panel with C++ stress-testing",
"repository": {
"type": "git",
"url": "https://github.com/ShubhamNegi4/Leetcode-Stress-Tester"
},
"version": "0.1.1",
"icon": "media/icon.png",
"engines": {
"vscode": "^1.75.0"
},
"categories": [
"Other"
],
"activationEvents": [
],
"main": "./src/frontend/extension.js",
"contributes": {
"commands": [
{
"command": "leetcode-stress-tester.fetchProblem",
"title": "Stress Tester: Fetch Problem"
},
{
"command": "leetcode-stress-tester.runSamples",
"title": "Stress Tester: Run Sample Tests"
},
{
"command": "leetcode-stress-tester.runStress",
"title": "Stress Tester: Run Stress Tests"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "leetcode-stress-container",
"title": "Stress Tester",
"icon": "media/icon.png"
}
]
},
"views": {
"leetcode-stress-container": [
{
"type": "webview",
"id": "leetcodeStressPanelView",
"name": "Stress Tester Controls",
"icon": "media/icon.png"
}
]
},
"configuration": {
"type": "object",
"title": "LeetCode Stress Tester Settings",
"properties": {
"leetcodeStressTester.testCount": {
"type": "number",
"default": 1000,
"description": "Number of random tests to generate"
},
"leetcodeStressTester.timeLimitMs": {
"type": "number",
"default": 1000,
"description": "Per-test time limit in milliseconds"
}
}
}
},
"scripts": {
"build": "echo 'No build step; using raw JS'",
"test": "echo 'No tests defined'"
},
"dependencies": {
"@vscode/webview-ui-toolkit": "^1.2.2",
"cheerio": "^1.1.0",
"node-fetch": "^2.7.0"
},
"devDependencies": {
"@types/node": "^16.11.7",
"@types/vscode": "^1.75.0"
}
}