mirror of
https://github.com/microsoft/vscode-extension-samples.git
synced 2026-04-27 16:55:44 +08:00
27 lines
541 B
JSON
27 lines
541 B
JSON
{
|
|
"name": "product-icon-theme-sample",
|
|
"version": "0.1.0",
|
|
"publisher": "vscode-samples",
|
|
"engines": {
|
|
"vscode": "*"
|
|
},
|
|
"enableProposedApi": true,
|
|
"contributes": {
|
|
"productIconThemes": [
|
|
{
|
|
"id": "vscode-v1-icons",
|
|
"label": "VSCode 1.0 Icons",
|
|
"path": "./theme/v1-product-icon-theme.json"
|
|
}
|
|
]
|
|
},
|
|
"scripts": {
|
|
"updateFont": "node ./build/updateFont.js",
|
|
"showFont": "open ./theme/vscode-10.html"
|
|
},
|
|
"devDependencies": {
|
|
"open": "^7.0.3",
|
|
"webfonts-generator": "^0.4.0"
|
|
}
|
|
}
|