package.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. {
  2. "name": "canonicalclasscpp",
  3. "displayName": "42 Canonical Class CPP",
  4. "description": "This extension is to automatically create a canonical hpp and cpp file",
  5. "version": "0.2.4",
  6. "publisher": "frfreyCanonicalClassCPP",
  7. "icon": "42.png",
  8. "repository": {
  9. "type": "git",
  10. "url": "https://github.com/Etheram68/Header-Cpp-Class"
  11. },
  12. "bugs": {
  13. "url": "https://github.com/Etheram68/Header-Cpp-Class/issues"
  14. },
  15. "homepage": "https://github.com/Etheram68/Header-Cpp-Class",
  16. "license": "MIT",
  17. "engines": {
  18. "vscode": "^1.47.0"
  19. },
  20. "categories": [
  21. "Other"
  22. ],
  23. "activationEvents": [
  24. "onCommand:canonicalclass.makeclass"
  25. ],
  26. "main": "./out/extension.js",
  27. "contributes": {
  28. "configuration": {
  29. "properties": {
  30. "headercppclass.headerId": {
  31. "title": "Header ID",
  32. "type": "string",
  33. "scope": "window",
  34. "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"
  35. }
  36. }
  37. },
  38. "commands": [
  39. {
  40. "command": "canonicalclass.makeclass",
  41. "title": "Make canonical class"
  42. }
  43. ],
  44. "keybindings":[
  45. {
  46. "command": "canonicalclass.makeclass",
  47. "key": "ctrl+alt+c",
  48. "mac": "cmd+alt+c"
  49. }
  50. ]
  51. },
  52. "scripts": {
  53. "vscode:prepublish": "npm run compile",
  54. "compile": "tsc -p ./",
  55. "lint": "eslint src --ext ts",
  56. "watch": "tsc -watch -p ./",
  57. "pretest": "npm run compile && npm run lint",
  58. "test": "node ./out/test/runTest.js"
  59. },
  60. "devDependencies": {
  61. "@types/glob": "^7.1.1",
  62. "@types/mocha": "^7.0.1",
  63. "@types/node": "^12.11.7",
  64. "@types/vscode": "^1.47.0",
  65. "eslint": "^6.8.0",
  66. "@typescript-eslint/parser": "^2.18.0",
  67. "@typescript-eslint/eslint-plugin": "^2.18.0",
  68. "glob": "^7.1.6",
  69. "mocha": "^7.0.1",
  70. "typescript": "^3.7.5",
  71. "vscode-test": "^1.3.0"
  72. }
  73. }