2018-04-24 15:07:32 -07:00
|
|
|
{
|
2018-10-08 15:37:24 -07:00
|
|
|
"name": "cat-coding",
|
|
|
|
|
"description": "Cat Coding - A Webview API Sample",
|
|
|
|
|
"version": "0.0.1",
|
2018-10-15 11:52:55 -07:00
|
|
|
"publisher": "vscode-samples",
|
2021-06-11 17:10:40 -07:00
|
|
|
"private": true,
|
|
|
|
|
"license": "MIT",
|
|
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
|
|
|
|
"url": "https://github.com/Microsoft/vscode-extension-samples"
|
|
|
|
|
},
|
2018-10-08 15:37:24 -07:00
|
|
|
"engines": {
|
2025-08-07 07:57:14 -07:00
|
|
|
"vscode": "^1.100.0"
|
2018-10-08 15:37:24 -07:00
|
|
|
},
|
|
|
|
|
"categories": [
|
|
|
|
|
"Other"
|
|
|
|
|
],
|
|
|
|
|
"activationEvents": [
|
|
|
|
|
"onWebviewPanel:catCoding"
|
|
|
|
|
],
|
2018-12-17 10:21:13 -08:00
|
|
|
"main": "./out/extension.js",
|
2018-10-08 15:37:24 -07:00
|
|
|
"contributes": {
|
|
|
|
|
"commands": [
|
|
|
|
|
{
|
|
|
|
|
"command": "catCoding.start",
|
|
|
|
|
"title": "Start cat coding session",
|
|
|
|
|
"category": "Cat Coding"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"command": "catCoding.doRefactor",
|
|
|
|
|
"title": "Do some refactoring",
|
|
|
|
|
"category": "Cat Coding"
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"scripts": {
|
2019-05-09 14:50:48 -07:00
|
|
|
"vscode:prepublish": "npm run compile",
|
2019-05-30 18:28:15 -07:00
|
|
|
"compile": "tsc -p ./",
|
2024-10-26 17:44:03 -07:00
|
|
|
"lint": "eslint",
|
2019-05-09 14:50:48 -07:00
|
|
|
"watch": "tsc -w -p ./"
|
2018-10-08 15:37:24 -07:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2024-10-26 17:44:03 -07:00
|
|
|
"@eslint/js": "^9.13.0",
|
|
|
|
|
"@stylistic/eslint-plugin": "^2.9.0",
|
2025-08-06 23:43:14 -07:00
|
|
|
"@types/node": "^22",
|
2025-08-07 07:57:14 -07:00
|
|
|
"@types/vscode": "^1.100.0",
|
2021-05-27 15:54:39 -07:00
|
|
|
"@types/vscode-webview": "^1.57.0",
|
2024-10-26 17:44:03 -07:00
|
|
|
"eslint": "^9.13.0",
|
2025-08-06 23:43:14 -07:00
|
|
|
"typescript": "^5.9.2",
|
|
|
|
|
"typescript-eslint": "^8.39.0"
|
2018-10-08 15:37:24 -07:00
|
|
|
}
|
2025-08-06 23:43:14 -07:00
|
|
|
}
|