package.json 1.9 KB

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