This repository has been archived by the owner on Jul 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 1.88 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
{
"name": "typewriter-auto-scroll",
"displayName": "Typewriter Auto-scroll",
"description": "Keeps the focused line in the middle of your screen.",
"publisher": "MikeyLau",
"version": "1.1.3",
"engines": {
"vscode": "^1.58.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished",
"onCommand:toggleTypewriter"
],
"repository": {
"type": "git",
"url": "https://github.com/MikeyJL/typewriter-auto-scroll"
},
"icon": "images/typewriter.png",
"main": "./extension.js",
"contributes": {
"configuration": {
"title": "Typewriter auto scroll configuration",
"properties": {
"typewriterAutoScroll.enable": {
"type": "boolean",
"default": true,
"description": "Toggle typewriter"
},
"typewriterAutoScroll.offset": {
"type": "number",
"default": 0,
"description": "Offsets the caret/focused line position by line amount. Example: an offset of -10 will move the focused line 10 lines down relative to the center of the editor."
}
}
},
"commands": [
{
"command": "toggleTypewriter",
"title": "Typewriter: Toggle typewriter"
},
{
"command": "changeTypewriterOffset",
"title": "Typewriter: Change the offset of the centered/focused line"
}
]
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "node ./test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/mocha": "^8.2.2",
"@types/node": "14.x",
"@types/vscode": "^1.58.0",
"eslint": "^7.31.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"glob": "^7.1.7",
"mocha": "^8.4.0",
"typescript": "^4.3.2",
"vscode-test": "^1.5.2"
}
}