{ "name": "cat-coding", "description": "Cat Coding - A Webview API Sample", "version": "0.0.1", "publisher": "vscode-samples", "private": true, "license": "MIT", "repository": { "type": "git", "url": "https://github.com/Microsoft/vscode-extension-samples" }, "engines": { "vscode": "^1.74.0" }, "categories": [ "Other" ], "activationEvents": [ "onWebviewPanel:catCoding" ], "main": "./out/extension.js", "contributes": { "commands": [ { "command": "catCoding.start", "title": "Start cat coding session", "category": "Cat Coding" }, { "command": "catCoding.doRefactor", "title": "Do some refactoring", "category": "Cat Coding" } ] }, "scripts": { "vscode:prepublish": "npm run compile", "compile": "tsc -p ./", "lint": "eslint \"src/**/*.ts\"", "watch": "tsc -w -p ./" }, "devDependencies": { "@types/node": "^16.11.7", "@types/vscode": "^1.73.0", "@types/vscode-webview": "^1.57.0", "@typescript-eslint/eslint-plugin": "^5.42.0", "@typescript-eslint/parser": "^5.42.0", "eslint": "^8.26.0", "typescript": "^5.0.2" } }