package.json 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. {
  2. "name": "wikipedia-hyperlinker",
  3. "author": "windhamdavid (forked from - https://wasi-master.github.io)",
  4. "publisher": "windhamdavid",
  5. "displayName": "Wikipedia Hyperlinker",
  6. "description": "Adds hyperlinks to markdown and HTML files with articles gotten from Wikipedia",
  7. "homepage": "https://github.com/wasi-master/wikipedia-hyperlink#readme",
  8. "version": "0.0.2",
  9. "repository": {
  10. "type": "git",
  11. "url": "https://github.com/windhamdavid/vscode-wikipedia-hyperlink.git"
  12. },
  13. "engines": {
  14. "vscode": "^1.68.0"
  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/stars/wasi-master/vscode-wikipedia-hyperlink?style=social",
  29. "href": "https://github.com/wasi-master/vscode-wikipedia-hyperlink",
  30. "description": "Amount of stars gotten on GitHub"
  31. },
  32. {
  33. "url": "https://img.shields.io/github/license/wasi-master/vscode-wikipedia-hyperlink",
  34. "href": "https://github.com/wasi-master/vscode-wikipedia-hyperlink",
  35. "description": "License of the source code"
  36. }
  37. ],
  38. "activationEvents": [
  39. "onCommand:wikipedia-hyperlinker.addHyperlink"
  40. ],
  41. "main": "./dist/extension.js",
  42. "contributes": {
  43. "commands": [
  44. {
  45. "command": "wikipedia-hyperlinker.addHyperlink",
  46. "title": "Wikipedia Hyperlinker: Add Hyperlink"
  47. }
  48. ]
  49. },
  50. "license": "MIT",
  51. "scripts": {
  52. "vscode:prepublish": "npm run package",
  53. "compile": "webpack",
  54. "watch": "webpack --watch",
  55. "package": "webpack --mode production --devtool hidden-source-map",
  56. "compile-tests": "tsc -p . --outDir out",
  57. "watch-tests": "tsc -p . -w --outDir out",
  58. "pretest": "npm run compile-tests && npm run compile && npm run lint",
  59. "lint": "eslint src --ext ts",
  60. "test": "node ./out/test/runTest.js"
  61. },
  62. "devDependencies": {
  63. "@types/glob": "^7.2.0",
  64. "@types/html-escaper": "^3.0.0",
  65. "@types/markdown-escape": "^1.1.0",
  66. "@types/mocha": "^9.0.0",
  67. "@types/node": "16.x",
  68. "@types/vscode": "1.31.0",
  69. "@typescript-eslint/eslint-plugin": "^5.9.1",
  70. "@typescript-eslint/parser": "^5.9.1",
  71. "@vscode/test-electron": "^2.0.3",
  72. "eslint": "^8.6.0",
  73. "glob": "^7.2.0",
  74. "mocha": "^9.1.3",
  75. "ts-loader": "^9.2.6",
  76. "typescript": "^4.5.4",
  77. "webpack": "^5.66.0",
  78. "webpack-cli": "^4.9.1"
  79. },
  80. "dependencies": {
  81. "@endom8rix/async-request": "^1.1.0",
  82. "html-escaper": "^3.0.3",
  83. "markdown-escape": "^1.1.0"
  84. }
  85. }