package.json 2.2 KB

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