-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
60 lines (60 loc) · 1.5 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": "vscode-unfancy-file-icons",
"displayName": "Unfancy file icons",
"description": "Octicons and Codicons as file icon themes",
"categories": [
"Themes"
],
"keywords": [
"icon-theme",
"icons",
"codicons",
"octicons",
"customization"
],
"icon": "images/icon.png",
"version": "3.15.0",
"publisher": "alexesprit",
"license": "MIT",
"engines": {
"vscode": "*"
},
"repository": {
"type": "git",
"url": "https://github.com/alexesprit/vscode-unfancy-file-icons.git"
},
"bugs": {
"url": "https://github.com/alexesprit/vscode-unfancy-file-icons/issues"
},
"contributes": {
"iconThemes": [
{
"id": "vscode-unfancy-file-icons-codicons",
"label": "Unfancy file icons (Codicons)",
"path": "./theme/unfancy-codicons.icon-theme.json"
},
{
"id": "vscode-unfancy-file-icons",
"label": "Unfancy file icons (Octicons)",
"path": "./theme/unfancy-octicons.icon-theme.json"
}
]
},
"scripts": {
"vscode:prepublish": "npm run build",
"build": "node ./scripts/generate-theme.js",
"test": "npm run build && ava",
"lint": "eslint . && node ./scripts/check-items.js",
"samples": "node ./scripts/manage-samples.js"
},
"dependencies": {
"color": "^3.1.2"
},
"devDependencies": {
"ava": "3.8.2",
"eslint": "7.2.0",
"eslint-config-web-scrobbler": "0.5.0",
"prettier-config-web-scrobbler": "0.1.0"
},
"prettier": "prettier-config-web-scrobbler"
}