{ "name": "css-flexbox-cheatsheet", "displayName": "CSS Flexbox Cheatsheet", "description": "Open a flexbox cheatsheet directly in VS Code.", "version": "3.3.1", "engines": { "vscode": "^1.58.0" }, "categories": [ "Other", "Programming Languages" ], "license": "MIT", "icon": "images/icon.png", "main": "./out/extension.js", "contributes": { "keybindings": [ { "command": "flexbox.cheatsheet", "key": "Ctrl+K K", "mac": "Cmd+K K" } ], "commands": [ { "command": "flexbox.cheatsheet", "title": "Open CSS Flexbox Cheatsheet" } ] }, "activationEvents": [ "onCommand:flexbox.cheatsheet", "onLanguage:css", "onLanguage:less", "onLanguage:sass", "onLanguage:scss" ], "publisher": "dzhavat", "repository": { "type": "git", "url": "https://github.com/dzhavat/css-flexbox-cheatsheet" }, "vsce": { "githubBranch": "main" }, "scripts": { "vscode:prepublish": "npm run compile", "compile": "tsc -p ./", "watch": "tsc -watch -p ./", "pretest": "npm run compile", "test": "node ./out/test/runTest.js", "lint": "eslint src --ext ts" }, "devDependencies": { "@types/glob": "^7.2.0", "@types/mocha": "^9.0.0", "@types/node": "14.14.31", "@types/vscode": "1.58.0", "@typescript-eslint/eslint-plugin": "^5.8.0", "@typescript-eslint/parser": "^5.8.0", "@vscode/webview-ui-toolkit": "^0.8.4", "eslint": "^8.5.0", "glob": "^7.2.0", "mocha": "^9.1.3", "typescript": "^4.5.4", "vsce": "^2.5.3", "vscode-test": "^1.6.1" }, "__metadata": { "id": "5f70f405-914a-43f6-b8ff-740495ee6b34", "publisherId": "2797277f-872f-4cae-81df-5756e648c817", "publisherDisplayName": "Dzhavat Ushev", "isPreReleaseVersion": false, "installedTimestamp": 1641229758879 } }