-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
123 lines (123 loc) · 2.96 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
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "typing-simulator",
"displayName": "Typing Simulator",
"description": "Simulates typing for use in presentations or live video recordings or just for fake coding to impress your boss ^^.",
"version": "0.1.2",
"publisher": "marcos-gomes-neto",
"author": {
"name": "Marcos Gomes Neto",
"email": "[email protected]"
},
"license": "MIT",
"icon": "resources/icon.png",
"homepage": "https://github.com/marcosgomesneto/typing-simulator",
"repository": {
"type": "git",
"url": "https://github.com/marcosgomesneto/typing-simulator.git"
},
"keywords": [
"typing",
"simulator",
"simulation",
"presentation",
"video",
"type",
"recorder",
"clipboard",
"auto",
"manual",
"hackertyper",
"keyboard",
"typescript",
"teach",
"teacher",
"keybindings",
"live",
"fake",
"code"
],
"engines": {
"vscode": "^1.49.0"
},
"categories": [
"Other"
],
"activationEvents": [],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "typing-simulator.startCurrentFileTyping",
"title": "Typing Simulator: Start Typing From Current File"
},
{
"command": "typing-simulator.startClipboardTyping",
"title": "Typing Simulator: Start Typing From Clipboard"
},
{
"command": "typing-simulator.continueTyping",
"title": "Typing Simulator: Continue Typing"
},
{
"command": "typing-simulator.stopTyping",
"title": "Typing Simulator: Stop Typing"
}
],
"configuration": {
"title": "Typing Simulator",
"properties": {
"typingSimulator.mode": {
"type": "string",
"enum": [
"auto",
"manual"
],
"enumItemLabels": [
"Auto",
"Manual"
],
"default": "auto",
"description": "Set typing mode."
},
"typingSimulator.speed": {
"type": "string",
"enum": [
"slow",
"medium",
"fast"
],
"enumItemLabels": [
"Slow",
"Medium",
"Fast"
],
"default": "medium",
"description": "Set typing mode."
}
}
}
},
"scripts": {
"vscode:prepublish": "yarn run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "yarn run compile && yarn run lint",
"lint": "eslint src --ext ts",
"test": "vscode-test"
},
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "18.x",
"@types/promise-queue": "^2.2.3",
"@types/vscode": "^1.49.0",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"@vscode/test-cli": "^0.0.4",
"@vscode/test-electron": "^2.3.8",
"eslint": "^8.54.0",
"typescript": "^5.3.2"
},
"dependencies": {
"promise-queue": "^2.2.5"
}
}