package.json 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. {
  2. "name": "wikipedia-link",
  3. "author": "windhamdavid (forked from - https://wasi-master.github.io)",
  4. "publisher": "windhamdavid",
  5. "displayName": "Wikipedia Link",
  6. "description": "Adds Wikipedia hyperlinks to markdown and HTML",
  7. "homepage": "https://github.com/windhamdavid/vscode-wikipedia-link#readme",
  8. "icon": "wikipedia.png",
  9. "version": "0.1.4",
  10. "repository": {
  11. "type": "git",
  12. "url": "https://github.com/windhamdavid/vscode-wikipedia-link.git"
  13. },
  14. "engines": {
  15. "vscode": "^1.95.3"
  16. },
  17. "categories": [
  18. "Other"
  19. ],
  20. "keywords": [
  21. "wikipedia",
  22. "hyperlink",
  23. "auto",
  24. "wiki",
  25. "insert"
  26. ],
  27. "badges": [
  28. {
  29. "url": "https://img.shields.io/github/license/windhamdavid/vscode-wikipedia-link",
  30. "href": "https://github.com/windhamdavid/vscode-wikipedia-link",
  31. "description": "License of the source code"
  32. }
  33. ],
  34. "activationEvents": [
  35. "onCommand:wikipedia-link.addHyperlink"
  36. ],
  37. "main": "./dist/extension.js",
  38. "contributes": {
  39. "commands": [
  40. {
  41. "command": "wikipedia-link.addHyperlink",
  42. "title": "Wikipedia: add link"
  43. }
  44. ]
  45. },
  46. "license": "MIT",
  47. "scripts": {
  48. "vscode:prepublish": "npm run package",
  49. "compile": "webpack",
  50. "watch": "webpack --watch",
  51. "package": "webpack --mode production --devtool hidden-source-map",
  52. "compile-tests": "tsc -p . --outDir out",
  53. "watch-tests": "tsc -p . -w --outDir out",
  54. "pretest": "npm run compile-tests && npm run compile && npm run lint",
  55. "lint": "eslint src --ext ts",
  56. "test": "node ./out/test/runTest.js"
  57. },
  58. "devDependencies": {
  59. "@types/glob": "^8.1.0",
  60. "@types/html-escaper": "^3.0.2",
  61. "@types/markdown-escape": "^1.1.3",
  62. "@types/mocha": "^10.0.10",
  63. "@types/node": "^22.10.1",
  64. "@types/vscode": "^1.95.0",
  65. "@typescript-eslint/eslint-plugin": "^8.17.0",
  66. "@typescript-eslint/parser": "^8.17.0",
  67. "@vscode/test-electron": "^2.4.1",
  68. "eslint": "^9.16.0",
  69. "glob": "^11.0.0",
  70. "mocha": "^11.0.1",
  71. "ts-loader": "^9.5.1",
  72. "typescript": "^5.7.2",
  73. "webpack": "^5.97.1",
  74. "webpack-cli": "^5.1.4"
  75. },
  76. "dependencies": {
  77. "@endom8rix/async-request": "^1.1.0",
  78. "html-escaper": "^3.0.3",
  79. "markdown-escape": "^2.0.0"
  80. }
  81. }