-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
71 lines (71 loc) · 1.53 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
{
"name": "feather-vscode",
"displayName": "Feather Product Icons",
"description": "Feather Product Icons for VS Code",
"publisher": "melishev",
"version": "1.0.0",
"type": "module",
"icon": ".github/assets/icon.png",
"categories": [
"Themes"
],
"files": [
"/dist"
],
"engines": {
"vscode": "^1.64.0"
},
"scripts": {
"build": "node --experimental-json-modules src/build.js"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"fantasticon": "2.0.0",
"feather-icons": "^4.29.1",
"fs-extra": "^11.2.0",
"oslllo-svg-fixer": "^3.0.0",
"semantic-release": "^23.0.0",
"semantic-release-vsce": "^5.6.4"
},
"contributes": {
"productIconThemes": [
{
"id": "feather-vscode",
"label": "Feather Icons",
"path": "./dist/feather-icons.json"
}
]
},
"author": {
"name": "Matvey Melishev",
"email": "[email protected]",
"url": "https://melishev.com"
},
"maintainers": [
{
"name": "Matvey Melishev",
"email": "[email protected]",
"url": "https://melishev.com"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/melishev/feather-vscode.git"
},
"bugs": {
"url": "https://github.com/melishev/feather-vscode/issues"
},
"keywords": [
"icon",
"theme",
"product",
"product-icon-theme"
],
"extensionKind": [
"ui"
],
"license": "MIT"
}