mirror of
https://github.com/microsoft/vscode-extension-samples.git
synced 2026-04-27 16:55:44 +08:00
45 lines
984 B
JSON
45 lines
984 B
JSON
{
|
|
"name": "cat-codicons",
|
|
"description": "Cat Codicons - Using codicons in webviews",
|
|
"version": "0.0.1",
|
|
"publisher": "vscode-samples",
|
|
"engines": {
|
|
"vscode": "^1.47.0"
|
|
},
|
|
"categories": [
|
|
"Other"
|
|
],
|
|
"activationEvents": [
|
|
"onCommand:catCodicons.show"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/microsoft/vscode-extension-samples.git"
|
|
},
|
|
"main": "./out/extension.js",
|
|
"contributes": {
|
|
"commands": [
|
|
{
|
|
"command": "catCodicons.show",
|
|
"title": "Show Cat Codicons",
|
|
"category": "Cat Codicons"
|
|
}
|
|
]
|
|
},
|
|
"scripts": {
|
|
"vscode:prepublish": "npm run compile",
|
|
"compile": "tsc -p ./",
|
|
"lint": "eslint . --ext .ts,.tsx",
|
|
"watch": "tsc -w -p ./"
|
|
},
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"@types/node": "^12.12.0",
|
|
"@types/vscode": "^1.47.0",
|
|
"@typescript-eslint/eslint-plugin": "^4.16.0",
|
|
"@typescript-eslint/parser": "^4.16.0",
|
|
"eslint": "^7.21.0",
|
|
"typescript": "^4.2.2",
|
|
"vscode-codicons": "0.0.7"
|
|
}
|
|
} |