-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
74 lines (74 loc) · 1.82 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
{
"name": "hotheaded-vscode",
"displayName": "Hotheaded VS Code",
"publisher": "89netraM",
"description": "Are red squiggly lines not enough? Do you wish for more of a kick when you make an error? Have VS Code scream at you whenever you type something that isn't correct.",
"icon": "assets/icon.png",
"extensionKind": [
"ui"
],
"repository": {
"type": "git",
"url": "https://github.com/89netraM/hotheaded-vscode.git"
},
"version": "1.1.2",
"engines": {
"vscode": "^1.46.0"
},
"categories": [
"Other"
],
"keywords": [
"meme",
"anime"
],
"activationEvents": [
"onStartupFinished"
],
"contributes": {
"configuration": {
"title": "Hotheaded VS Code",
"properties": {
"hotheadedVSCode.voiceLineGlob": {
"type": "string",
"default": null,
"markdownDescription": "A glob targeting some uncompressed sounds files (`.wav` etc.). Leave blank for built-in voice lines. \nRestart required."
},
"hotheadedVSCode.cooldownDurationMin": {
"type": "number",
"default": 0,
"description": "Minimum cooldown duration in milliseconds."
},
"hotheadedVSCode.cooldownDurationMax": {
"type": "number",
"default": 0,
"description": "Maximum cooldown duration in milliseconds."
},
"hotheadedVSCode.voiceVolume": {
"type": "number",
"default": 1,
"description": "Volume level for voice playback (0.0 - 1.5)."
}
}
}
},
"main": "./out/extension.js",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/node": "^13.13.21",
"@types/pcm-volume": "^1.0.0",
"@types/vscode": "^1.46.0",
"typescript": "^3.9.7",
"vsce": "^1.79.5"
},
"dependencies": {
"glob": "^7.1.6",
"pcm-volume": "^1.0.0",
"speaker": "^0.5.2"
}
}