-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.73 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.73 KB
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": "@pierre/vscode-icons",
"displayName": "Pierre VS Code Icons",
"description": "File icon theme for VS Code backed by source SVGs.",
"version": "0.0.7",
"publisher": "pierrecomputer",
"license": "MIT",
"type": "module",
"icon": "icon.png",
"galleryBanner": {
"color": "#141415",
"theme": "dark"
},
"repository": {
"type": "git",
"url": "https://github.com/pierrecomputer/vscode-icons"
},
"bugs": {
"url": "https://github.com/pierrecomputer/vscode-icons/issues"
},
"engines": {
"vscode": "^1.90.0"
},
"categories": [
"Themes"
],
"keywords": [
"icons",
"pierre",
"file-icons",
"icon-theme"
],
"scripts": {
"build": "npm run format:svgs && npm run format:check && npm run lint && node scripts/build-icon-theme.mjs",
"watch": "node scripts/watch-svgs.mjs",
"package": "npm run build && node scripts/package-vsix.mjs",
"lint": "oxlint scripts/",
"format": "oxfmt scripts/",
"format:check": "oxfmt --check scripts/",
"format:svgs": "node scripts/format-svgs.mjs",
"sizes": "node scripts/svg-sizes.mjs"
},
"contributes": {
"iconThemes": [
{
"id": "pierre-icons-minimal",
"label": "Pierre Icons (Minimal)",
"path": "./icons/theme-minimal.json"
},
{
"id": "pierre-icons",
"label": "Pierre Icons",
"path": "./icons/theme-default.json"
},
{
"id": "pierre-icons-complete",
"label": "Pierre Icons (Complete)",
"path": "./icons/theme-complete.json"
}
]
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@vscode/vsce": "^3.2.2",
"oxfmt": "^0.41.0",
"oxlint": "^1.56.0",
"svgo": "^4.0.1"
}
}