-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.18 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
{
"name": "vscode-typosmooth",
"displayName": "TypoSmooth",
"description": "Extension to modify Visual Studio Code to allow for a smooth cursor animation while typing. Developed by Prasadbobby",
"version": "1.0.0",
"homepage": "https://github.com/prasadbobby/vscode-smoothtype",
"license": "MIT",
"publisher": "prasadbobby",
"author": {
"email": "[email protected]",
"name": "Naga Venkata Durga Prasad(Prasad Bobby)",
"url": "http://prasadbobby.me"
},
"repository": {
"type": "git",
"url": "https://github.com/prasadbobby/vscode-typosmooth"
},
"bugs": {
"url": "https://github.com/prasadbobby/vscode-typosmooth/issues",
"email": "[email protected]"
},
"icon": "images/icon.png",
"galleryBanner": {
"color": "#004956",
"theme": "dark"
},
"categories": [
"Other",
"Themes"
],
"keywords": [
"cursor",
"caret",
"smooth",
"type",
"theme",
"smooth typer",
"smooth cursor"
],
"engines": {
"vscode": "^1.9.1"
},
"activationEvents": [
"*"
],
"main": "./extension",
"contributes": {
"commands": [
{
"command": "extension.enableAnimation",
"title": "SmoothType: Enable Animation"
},
{
"command": "extension.disableAnimation",
"title": "SmoothType: Disable Animation"
},
{
"command": "extension.reloadAnimation",
"title": "SmoothType: Reload Animation"
}
],
"configuration": {
"title": "Smooth Type",
"properties": {
"smoothtype.autoReload": {
"description": "Ask before restarting after a command is successfully run.",
"type": "boolean",
"default": false
},
"smoothtype.duration": {
"description": "Duration in milliseconds for the cursor to travel from one character position (or line) to the next.",
"type": "number",
"default": 80
}
}
}
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install"
},
"dependencies": {
"sudo-prompt": "^8.2.0",
"tmp": "^0.0.33"
},
"devDependencies": {
"vscode": "^1.1.6",
"eslint": "^4.11.0"
}
}