-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.48 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
{
"name": "indent-guides",
"displayName": "Indent Guides",
"description": "This extensions adds indent guides to the editor.",
"version": "0.0.5",
"publisher": "JoeyRobichaud",
"icon": "/images/icon.png",
"galleryBanner": {
"color": "#1E1E1E",
"theme": "dark"
},
"license": "SEE LICENSE IN LICENSE.TXT",
"bugs": {
"url": "https://github.com/JoeRobich/vscode-indent-guides/issues"
},
"homepage": "https://github.com/JoeRobich/vscode-indent-guides/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/JoeRobich/vscode-indent-guides.git"
},
"engines": {
"vscode": "^0.10.1"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./out/src/extension",
"contributes": {
"configuration": {
"type": "object",
"title": "Indent Guide configuration",
"properties": {
"indent-guide.style": {
"type": "string",
"default": "solid",
"description": "Determines how to render the indent guides. Valid values are \"solid\", \"dotted\", and \"dashed\"."
},
"indent-guide.color": {
"type": "string",
"default": "currentColor",
"description": "Specifies the color of the indent guides."
}
}
}
},
"scripts": {
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./"
},
"dependencies": {
"lodash": "^3.10.1"
},
"devDependencies": {
"typescript": "^1.6.2",
"vscode": "0.10.x"
}
}