package.json 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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.1.9",
  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. "default": "101header.insertHeader",
  35. "description": "The id of the command to execute at the creation of the skeleton (example: 42header.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"
  36. }
  37. }
  38. },
  39. "commands": [
  40. {
  41. "command": "canonicalclass.makeclass",
  42. "title": "Make canonical class"
  43. }
  44. ],
  45. "keybindings":[
  46. {
  47. "command": "canonicalclass.makeclass",
  48. "key": "ctrl+alt+c",
  49. "mac": "cmd+alt+c"
  50. }
  51. ]
  52. },
  53. "scripts": {
  54. "vscode:prepublish": "npm run compile",
  55. "compile": "tsc -p ./",
  56. "lint": "eslint src --ext ts",
  57. "watch": "tsc -watch -p ./",
  58. "pretest": "npm run compile && npm run lint",
  59. "test": "node ./out/test/runTest.js"
  60. },
  61. "devDependencies": {
  62. "@types/glob": "^7.1.1",
  63. "@types/mocha": "^7.0.1",
  64. "@types/node": "^12.11.7",
  65. "@types/vscode": "^1.47.0",
  66. "eslint": "^6.8.0",
  67. "@typescript-eslint/parser": "^2.18.0",
  68. "@typescript-eslint/eslint-plugin": "^2.18.0",
  69. "glob": "^7.1.6",
  70. "mocha": "^7.0.1",
  71. "typescript": "^3.7.5",
  72. "vscode-test": "^1.3.0"
  73. }
  74. }