-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
82 lines (82 loc) · 2.12 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
74
75
76
77
78
79
80
81
82
{
"name": "material-product-icons",
"displayName": "Material Product Icons",
"description": "Product Icon Theme with Material Icons for VS Code",
"version": "1.7.1",
"publisher": "PKief",
"author": {
"name": "Philipp Kief",
"email": "philipp.kief@gmx.de",
"url": "https://pkief.com"
},
"funding": "https://github.com/sponsors/PKief",
"sponsor": {
"url": "https://github.com/sponsors/PKief"
},
"engines": {
"vscode": "^1.53.0"
},
"scripts": {
"start": "nodemon ./src/index.ts",
"build": "ts-node ./src/index.ts",
"lint": "npx @biomejs/biome check --write ./src",
"format": "npx @biomejs/biome format --write ./",
"preview": "ts-node ./src/scripts/preview/index.ts",
"changelog": "changelog-machine --config changelog.config.json",
"preversion": "npm run preview && git add images/preview.png",
"version": "npm run changelog && git add CHANGELOG.md"
},
"homepage": "https://github.com/material-extensions/vscode-material-product-icons/blob/master/README.md",
"repository": {
"url": "https://github.com/material-extensions/vscode-material-product-icons.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/material-extensions/vscode-material-product-icons/issues"
},
"icon": "logo.png",
"galleryBanner": {
"color": "#1e1e1e",
"theme": "dark"
},
"extensionKind": [
"ui",
"workspace"
],
"capabilities": {
"untrustedWorkspaces": {
"supported": true
},
"virtualWorkspaces": true
},
"categories": [
"Themes"
],
"keywords": [
"icons",
"theme",
"material",
"icon-theme",
"product-icon-theme",
"customization"
],
"contributes": {
"productIconThemes": [
{
"id": "material-product-icons",
"label": "Material Product Icons",
"path": "./theme/material.product-icon-theme.json"
}
]
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@types/puppeteer": "^7.0.4",
"changelog-machine": "^1.0.2",
"nodemon": "^3.1.4",
"puppeteer": "^22.13.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.3",
"webfont": "^11.2.26"
}
}