forked from hoovercj/vscode-power-mode
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
101 lines (101 loc) · 3.52 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
{
"name": "vscode-osu",
"displayName": "OSU Mode 3",
"description": "Hit the code to the beat",
"version": "3.3.0",
"publisher": "AlexShenVSCode",
"icon": "images/icon-large.png",
"author": {
"name": "Alex Shen",
"email": "ao.shen@gmail.com",
"url": "https://github.com/ao-shen"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ao-shen/vscode-power-mode/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/ao-shen/vscode-power-mode.git"
},
"homepage": "https://github.com/ao-shen/vscode-power-mode",
"engines": {
"vscode": "^1.75.1"
},
"categories": [
"Themes",
"Other"
],
"activationEvents": [
"*"
],
"main": "./out/src/extension",
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"test": "node ./out/src/test/runTest.js"
},
"devDependencies": {
"@types/mocha": "^9.0.0",
"@types/node": "^16.10.2",
"@types/vscode": "^1.34.0",
"mocha": "^9.1.2",
"typescript": "^4.4.3"
},
"contributes": {
"configuration": {
"title": "OSU Mode",
"properties": {
"osumode.enabled": {
"default": true,
"type": "boolean",
"description": "Set to false to disable OSU MODE!!!"
},
"osumode.enableCursorExplosions": {
"type": "boolean",
"default": true,
"description": "Set to false to disable letter explosions at the cursor while typing"
},
"osumode.enableComboCounter": {
"type": "boolean",
"default": true,
"description": "Set to false to disable showing the combo counter in the editor"
},
"osumode.deleteResetsCombo": {
"type": "boolean",
"default": false,
"description": "Set to true to make delete reset the combo, and also add a timer to reset the combo after 8 seconds of inactivity"
},
"osumode.enableComboImage": {
"type": "boolean",
"default": true,
"description": "Set to false to disable showing the combo image in the editor"
},
"osumode.comboImageInterval": {
"type": "number",
"default": 50,
"description": "The number of combo between displaying a combo image"
},
"osumode.customComboImages": {
"type": "array",
"default": [],
"description": "A list of URLs of your custom images. LOCAL IMAGES WILL NOT WORK"
},
"osumode.maxExplosions": {
"type": "number",
"default": 1,
"description": "The maximum number of simultaneous explosions"
},
"osumode.explosionSize": {
"type": "number",
"default": 6,
"description": "The size of the explosions. For value X, the height is set to X rem and the width to X ch"
}
}
}
},
"dependencies": {
"@types/vscode": "^1.34.0",
"@vscode/test-electron": "^2.2.3"
}
}