-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
executable file
·66 lines (66 loc) · 1.39 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
{
"name": "icons",
"displayName": "Icons",
"description": "Icons for Visual Studio Code.",
"version": "3.8.0",
"publisher": "tal7aouy",
"main": "./out/extension.js",
"engines": {
"vscode": "^1.63.0"
},
"activationEvents": [
"onIdentity:identity"
],
"scripts": {
"build": "tsc && node ./out/extension.js",
"package": "vsce package",
"lint": "eslint . --ext .ts --fix"
},
"categories": [
"Other",
"Themes"
],
"contributes": {
"iconThemes": [
{
"id": "icons",
"label": "Icons",
"path": "./icons.json"
}
]
},
"icon": "icon.png",
"galleryBanner": {
"color": "#45403d",
"theme": "dark"
},
"keywords": [
"icons",
"theme",
"icon-theme",
"others"
],
"repository": {
"type": "git",
"url": "git+https://github.com/tal7aouy/vscode-icons.git"
},
"author": {
"email": "[email protected]",
"name": "Mhammed Talhaouy"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/tal7aouy/vscode-icons/issues"
},
"homepage": "https://github.com/tal7aouy/vscode-icons#readme",
"devDependencies": {
"@types/node": "^14.18.9",
"@types/vscode": "^1.63.0",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"eslint": "^8.6.0",
"nodemon": "^2.0.15",
"typescript": "^4.5.4",
"vsce": "^2.6.3"
}
}