forked from ao-shen/vscode-osu-mode
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
111 lines (111 loc) · 3.14 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
{
"name": "vscode-osu2",
"displayName": "OSU Mode2",
"description": "Enjoy pleasure when coding",
"version": "3.3.6",
"publisher": "lxfriday",
"icon": "assets/icon-large.png",
"author": {
"name": "lxfriday",
"email": "liu3248184446@outlook.com",
"url": "https://github.com/lxfriday"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/lxfriday/vscode-osu2/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/lxfriday/vscode-osu2.git"
},
"homepage": "https://github.com/lxfriday/vscode-osu2",
"engines": {
"vscode": "^1.13.0"
},
"categories": [
"Themes",
"Other"
],
"activationEvents": [
"*"
],
"main": "./out/src/extension",
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/mocha": "^9.0.0",
"@types/node": "^16.10.2",
"mocha": "^9.1.2",
"typescript": "^4.4.3",
"vscode": "^1.1.37"
},
"contributes": {
"configuration": {
"title": "OSU Mode",
"properties": {
"osumode.enabled": {
"default": true,
"type": "boolean",
"description": "Enable to activate OSU MODE!!!"
},
"osumode.presets": {
"type": "string",
"enum": [
"ridiculous"
],
"default": "ridiculous",
"description": "Choose between different presets to use when osumode is activated"
},
"osumode.enableCursorExplosions": {
"type": "boolean",
"default": true,
"description": "Set to true to enable letter explosions at the cursor while typing"
},
"osumode.enableComboCounter": {
"type": "boolean",
"default": true,
"description": "Set to true to enable showing the combo in the editor"
},
"osumode.enableBackImg": {
"type": "boolean",
"default": true,
"description": "是否启用背景图切换效果"
},
"osumode.preferImgList": {
"type": "array",
"default": [],
"description": "添加自己想要的图片地址"
},
"osumode.imgInterval": {
"type": "number",
"default": 50,
"description": "多少次输入之后会触发效果"
},
"osumode.enableDefaultImgs": {
"type": "boolean",
"default": true,
"description": "是否启用默认的背景图片"
},
"osumode.enableRandomPlayImgs": {
"type": "boolean",
"default": true,
"description": "是否随机播放背景图片"
},
"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"
}
}
}
}
}