-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
133 lines (133 loc) · 3.71 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
129
130
131
132
133
{
"name": "aging-lines",
"displayName": "Aging Lines",
"description": "A POC extension for Visual Studio Code that shows by varying background color how old the changes in your editor are",
"version": "0.0.4",
"publisher": "kodanbce",
"license": "MIT",
"engines": {
"vscode": "^1.32.0"
},
"repository": {
"url": "https://github.com/kodanbce/aging-lines-vscode"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "agingLines.toggle",
"title": "Toggle Aging Lines"
}
],
"configuration": {
"title": "Aging Lines",
"properties": {
"agingLines.categories": {
"type": "array",
"items": {
"type": "object",
"title": "Category",
"properties": {
"startsFromDay": {
"type": "number",
"description": "Days since now from which the category is effective"
},
"decorationRenderOptions": {
"type": "object",
"description": "Styles to give to the category. Can use anything that's defined in VSCode's DecorationRenderOptions interface."
}
}
},
"default": [
{
"startsFromDay": 0,
"decorationRenderOptions": {
"backgroundColor": "hsla(0, 100%, 50%, 0.50)"
}
},
{
"startsFromDay": 1,
"decorationRenderOptions": {
"backgroundColor": "hsla(0, 90%, 50%, 0.45)"
}
},
{
"startsFromDay": 2,
"decorationRenderOptions": {
"backgroundColor": "hsla(0, 80%, 50%, 0.40)"
}
},
{
"startsFromDay": 4,
"decorationRenderOptions": {
"backgroundColor": "hsla(0, 70%, 50%, 0.35)"
}
},
{
"startsFromDay": 8,
"decorationRenderOptions": {
"backgroundColor": "hsla(0, 60%, 50%, 0.30)"
}
},
{
"startsFromDay": 16,
"decorationRenderOptions": {
"backgroundColor": "hsla(0, 50%, 50%, 0.25)"
}
},
{
"startsFromDay": 32,
"decorationRenderOptions": {
"backgroundColor": "hsla(0, 40%, 50%, 0.20)"
}
},
{
"startsFromDay": 64,
"decorationRenderOptions": {
"backgroundColor": "hsla(0, 30%, 50%, 0.15)"
}
},
{
"startsFromDay": 128,
"decorationRenderOptions": {
"backgroundColor": "hsla(0, 20%, 50%, 0.10)"
}
},
{
"startsFromDay": 256,
"decorationRenderOptions": {
"backgroundColor": "hsla(0, 10%, 50%, 0.05)"
}
},
{
"startsFromDay": 512,
"decorationRenderOptions": {
"backgroundColor": "hsla(0, 0%, 50%, 0.00)"
}
}
]
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint . --ext .ts,.tsx",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/node": "^12.12.0",
"@typescript-eslint/eslint-plugin": "^3.0.2",
"@typescript-eslint/parser": "^3.0.2",
"eslint": "^7.1.0",
"typescript": "^4.0.2",
"@types/vscode": "^1.32.0"
}
}