forked from mauricedb/presentation-buddy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
128 lines (128 loc) · 3.51 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
124
125
126
127
128
{
"name": "presentation-buddy",
"preview": true,
"displayName": "Presentation Buddy",
"description": "Automatically type code during presentations",
"publisher": "mauricedebeijer",
"repository": {
"type": "git",
"url": "https://github.com/mauricedb/presentation-buddy"
},
"version": "0.12.0",
"author": "Maurice de Beijer",
"license": "MIT",
"engines": {
"vscode": "^1.87.0"
},
"categories": [
"Snippets",
"Other"
],
"keywords": [
"Presentation",
"Presentations",
"Type",
"Auto-Type"
],
"galleryBanner": {
"color": "#193549",
"theme": "dark"
},
"activationEvents": [],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "presentationBuddy.init",
"title": "Presentation Buddy: Init"
},
{
"command": "presentationBuddy.start",
"title": "Presentation Buddy: Start"
},
{
"command": "presentationBuddy.continue",
"title": "Presentation Buddy: Continue"
}
],
"configuration": {
"title": "Presentation Buddy",
"properties": {
"presentation-buddy.delay": {
"type": "integer",
"default": 100,
"description": "Delay (in ms) between keys entered",
"scope": "user"
},
"presentation-buddy.randomness": {
"type": "integer",
"default": 25,
"description": "Randomness (in ms) between keys entered",
"scope": "user"
},
"presentation-buddy.waitInsteadOfTyping": {
"type": "array",
"items": {
"type": "string"
},
"default": [
"/*WAIT*/"
],
"description": "When using typeChunksFromFile, Presentation Buddy will pause when it finds any matching string. Matches are NOT copied to the output.",
"scope": "user"
},
"presentation-buddy.waitAfterNewLine": {
"type": "boolean",
"default": true,
"description": "When using typeChunksFromFile, controls whether Presentation Buddy should pause at the start of each new line.",
"scope": "user"
},
"presentation-buddy.waitAfterTyping": {
"type": "array",
"items": {
"type": "string"
},
"default": [
"(",
"="
],
"description": "When using typeChunksFromFile, Presentation Buddy will pause after typing any series of matching strings.",
"scope": "user"
},
"presentation-buddy.skipLinesContaining": {
"type": "array",
"items": {
"type": "string"
},
"default": [
"/*SKIP*/"
],
"description": "When using typeChunksFromFile, Presentation Buddy will skip any line containing any matching string.",
"scope": "user"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"test": "vscode-test",
"vsce:minor": "vsce publish minor",
"vsce:patch": "vsce publish patch"
},
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "18.x",
"@types/vscode": "^1.87.0",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"@vscode/test-cli": "^0.0.6",
"@vscode/test-electron": "^2.3.9",
"eslint": "^8.56.0",
"typescript": "^5.3.3"
},
"dependencies": {
"jsonc": "^2.0.0"
}
}