| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- {
- "name": "canonicalclasscpp",
- "displayName": "42 Canonical Class CPP",
- "description": "This extension is to automatically create a canonical hpp and cpp file",
- "version": "0.2.3",
- "publisher": "frfreyCanonicalClassCPP",
- "icon": "42.png",
- "repository": {
- "type": "git",
- "url": "https://github.com/Etheram68/Header-Cpp-Class"
- },
- "bugs": {
- "url": "https://github.com/Etheram68/Header-Cpp-Class/issues"
- },
- "homepage": "https://github.com/Etheram68/Header-Cpp-Class",
- "license": "MIT",
- "engines": {
- "vscode": "^1.47.0"
- },
- "categories": [
- "Other"
- ],
- "activationEvents": [
- "onCommand:canonicalclass.makeclass"
- ],
- "main": "./out/extension.js",
- "contributes": {
- "configuration": {
- "properties": {
- "headercppclass.headerId": {
- "title": "Header ID",
- "type": "string",
- "scope": "window",
- "description": "The id of the command to execute at the creation of the skeleton (example: 101header.insertHeader). CAREFUL: this will actually EXECUTE the command and unknown commands will result in no skeleton creations! Leave it to blank for no command to execute"
- }
- }
- },
- "commands": [
- {
- "command": "canonicalclass.makeclass",
- "title": "Make canonical class"
- }
- ],
- "keybindings":[
- {
- "command": "canonicalclass.makeclass",
- "key": "ctrl+alt+c",
- "mac": "cmd+alt+c"
- }
- ]
- },
- "scripts": {
- "vscode:prepublish": "npm run compile",
- "compile": "tsc -p ./",
- "lint": "eslint src --ext ts",
- "watch": "tsc -watch -p ./",
- "pretest": "npm run compile && npm run lint",
- "test": "node ./out/test/runTest.js"
- },
- "devDependencies": {
- "@types/glob": "^7.1.1",
- "@types/mocha": "^7.0.1",
- "@types/node": "^12.11.7",
- "@types/vscode": "^1.47.0",
- "eslint": "^6.8.0",
- "@typescript-eslint/parser": "^2.18.0",
- "@typescript-eslint/eslint-plugin": "^2.18.0",
- "glob": "^7.1.6",
- "mocha": "^7.0.1",
- "typescript": "^3.7.5",
- "vscode-test": "^1.3.0"
- }
- }
|