forked from LaurentTreguier/vscode-simple-icons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.55 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
{
"name": "vscode-simple-icons",
"displayName": "Simple icons",
"description": "An icon theme that tries to be simple",
"version": "1.11.7",
"publisher": "LaurentTreguier",
"license": "MIT",
"bugs": {
"url": "https://github.com/LaurentTreguier/vscode-simple-icons/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/LaurentTreguier/vscode-simple-icons.git"
},
"engines": {
"vscode": "^1.33.1"
},
"categories": [
"Themes",
"Other"
],
"keywords": [
"icon",
"theme",
"icon-theme",
"simple",
"icons"
],
"icon": "images/logo.png",
"extensionKind": "ui",
"activationEvents": [
"*"
],
"main": "./out/extension",
"contributes": {
"iconThemes": [
{
"id": "simple-icons",
"label": "Simple icons",
"path": "./simple-icons.json"
},
{
"id": "minimalistic-icons",
"label": "Minimalistic icons",
"path": "./minimalistic-icons.json"
}
],
"configuration": [
{
"title": "Simple icons",
"properties": {
"simpleIcons.hideArrows": {
"type": "boolean",
"default": true,
"description": "Whether arrows are shown next to folders",
"scope": "application"
},
"simpleIcons.simple.folder.color": {
"type": [
"string",
"null"
],
"default": null,
"description": "Standard folders color (null = default color)",
"scope": "application"
}
}
}
]
},
"scripts": {
"vscode:prepublish": "bash generator.sh",
"compile": "webpack --mode production",
"watch": "webpack --mode none --watch",
"postinstall": "node node_modules/vscode/bin/install"
},
"devDependencies": {
"@types/node": "^10.x.x",
"@types/webpack": "^4.4.31",
"svgo": "^1.2.2",
"ts-loader": "^5.4.5",
"ts-node": "^8.1.0",
"typescript": "^3.4.5",
"vsce": "^1.61.0",
"vscode": "^1.1.34",
"webpack": "^4.31.0",
"webpack-cli": "^3.3.2"
},
"dependencies": {}
}