-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
73 lines (73 loc) · 1.59 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
{
"name": "file-icons",
"displayName": "file-icons",
"description": "File-specific icons in VSCode for improved visual grepping.",
"version": "1.1.0",
"publisher": "file-icons",
"license": "MIT",
"author": "Daniel Brooker <[email protected]>",
"maintainers": [{
"name": "John Gardner",
"email": "[email protected]",
"url": "https://github.com/Alhadis"
}],
"engines": {
"node": ">=15",
"vscode": "^1.5.0"
},
"repository": {
"type": "git",
"url": "https://github.com/file-icons/vscode"
},
"bugs": "https://github.com/file-icons/vscode/issues",
"homepage": "https://github.com/file-icons/vscode",
"icon": "./thumbnail.png",
"galleryBanner": {
"color": "#15191B",
"theme": "dark"
},
"categories": [
"Themes",
"Other"
],
"keywords": [
"icons",
"filetypes",
"file-icons",
"icon-theme",
"theme"
],
"contributes": {
"iconThemes": [{
"id": "file-icons",
"label": "File Icons",
"path": "./icons/file-icons-icon-theme.json"
},{
"id": "file-icons-colourless",
"label": "File Icons (Colourless)",
"path": "./icons/file-icons-colourless-icon-theme.json"
}]
},
"scripts": {
"import": "make update",
"lint": "make lint"
},
"eslintConfig": {
"extends": "@alhadis",
"overrides": [{
"files": ["scripts/*.mjs"],
"rules": {"no-irregular-whitespace": 0}
}],
"rules": {"camelcase": 0}
},
"eslintIgnore": ["defs"],
"devDependencies": {
"@alhadis/eslint-config": "^2.3.4",
"@babel/eslint-parser": "^7.15.0",
"cson": "^7.20.0",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.24.2",
"genex": "v1.1.0",
"less": "^2.7.3"
}
}