2020-08-06 12:46:40 -07:00
|
|
|
{
|
2020-08-06 13:48:32 -07:00
|
|
|
"name": "cat-codicons",
|
|
|
|
|
"description": "Cat Codicons - Using codicons in webviews",
|
2020-08-06 12:46:40 -07:00
|
|
|
"version": "0.0.1",
|
|
|
|
|
"publisher": "vscode-samples",
|
2022-02-09 11:48:55 -08:00
|
|
|
"private": true,
|
|
|
|
|
"license": "MIT",
|
2020-08-06 12:46:40 -07:00
|
|
|
"engines": {
|
|
|
|
|
"vscode": "^1.47.0"
|
|
|
|
|
},
|
|
|
|
|
"categories": [
|
|
|
|
|
"Other"
|
|
|
|
|
],
|
|
|
|
|
"activationEvents": [
|
2020-08-06 13:48:32 -07:00
|
|
|
"onCommand:catCodicons.show"
|
2020-08-06 12:46:40 -07:00
|
|
|
],
|
|
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
|
|
|
|
"url": "https://github.com/microsoft/vscode-extension-samples.git"
|
|
|
|
|
},
|
|
|
|
|
"main": "./out/extension.js",
|
|
|
|
|
"contributes": {
|
|
|
|
|
"commands": [
|
|
|
|
|
{
|
2020-08-06 13:48:32 -07:00
|
|
|
"command": "catCodicons.show",
|
|
|
|
|
"title": "Show Cat Codicons",
|
|
|
|
|
"category": "Cat Codicons"
|
2020-08-06 12:46:40 -07:00
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"scripts": {
|
|
|
|
|
"vscode:prepublish": "npm run compile",
|
|
|
|
|
"compile": "tsc -p ./",
|
|
|
|
|
"lint": "eslint . --ext .ts,.tsx",
|
|
|
|
|
"watch": "tsc -w -p ./"
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"@types/node": "^12.12.0",
|
|
|
|
|
"@types/vscode": "^1.47.0",
|
2022-04-13 15:49:42 -07:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.19.0",
|
|
|
|
|
"@typescript-eslint/parser": "^5.19.0",
|
2021-07-13 16:00:21 -07:00
|
|
|
"@vscode/codicons": "0.0.20",
|
2022-04-13 15:49:42 -07:00
|
|
|
"eslint": "^8.13.0",
|
2022-04-13 15:12:23 -07:00
|
|
|
"typescript": "^4.6.3"
|
2020-08-06 12:46:40 -07:00
|
|
|
}
|
2022-04-13 15:12:23 -07:00
|
|
|
}
|