forked from BeardedBear/bearded-icons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.38 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": "beardedicons",
"displayName": "Bearded Icons",
"description": "The icons with a long beard.",
"publisher": "BeardedBear",
"version": "1.9.0",
"engines": {
"vscode": "^1.77.0"
},
"repository": {
"type": "git",
"url": "https://github.com/BeardedBear/bearded-icons"
},
"bugs": {
"url": "https://github.com/BeardedBear/bearded-icons/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/BeardedBear/bearded-icons",
"keywords": [
"bearded",
"icons"
],
"sponsor": {
"url": "https://github.com/sponsors/BeardedBear"
},
"icon": "icon.png",
"categories": [
"Other",
"Themes"
],
"galleryBanner": {
"color": "#182028",
"theme": "dark"
},
"contributes": {
"iconThemes": [
{
"id": "bearded-icons",
"label": "Bearded Icons",
"path": "./icons.json"
}
]
},
"devDependencies": {
"@types/vscode": "^1.77.0",
"node": "^19.8.1",
"vscode-test": "^1.6.1"
},
"scripts": {
"build": "vite-node src/main.ts",
"build:ext": "vsce package --no-yarn",
"dev": "vite-node src/main.ts -w",
"fix": "prettier --write src/**/*.ts"
},
"dependencies": {
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"eslint": "^8.37.0",
"ovsx": "^0.8.0",
"prettier": "^2.8.7",
"typescript": "^5.0.3",
"vite-node": "^0.29.8",
"vsce": "^2.15.0"
}
}