package.json 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. {
  2. "name": "wikipedia-hyperlinker",
  3. "author": "Wasi Master <arianmollik323@gmail.com> (https://wasi-master.github.io)",
  4. "publisher": "WasiMaster",
  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. "bugs": {
  10. "url": "https://github.com/wasi-master/wikipedia-hyperlink/issues",
  11. "email": "arianmollik323@gmail.com"
  12. },
  13. "repository": {
  14. "type": "git",
  15. "url": "https://github.com/wasi-master/wikipedia-hyperlink"
  16. },
  17. "engines": {
  18. "vscode": "^1.31.0"
  19. },
  20. "categories": [
  21. "Other"
  22. ],
  23. "keywords": [
  24. "wikipedia",
  25. "hyperlink",
  26. "auto",
  27. "wiki",
  28. "insert"
  29. ],
  30. "badges": [
  31. {
  32. "url": "https://img.shields.io/github/stars/wasi-master/vscode-wikipedia-hyperlink?style=social",
  33. "href": "https://github.com/wasi-master/vscode-wikipedia-hyperlink",
  34. "description": "Amount of stars gotten on GitHub"
  35. },
  36. {
  37. "url": "https://img.shields.io/github/license/wasi-master/vscode-wikipedia-hyperlink",
  38. "href": "https://github.com/wasi-master/vscode-wikipedia-hyperlink",
  39. "description": "License of the source code"
  40. }
  41. ],
  42. "activationEvents": [
  43. "onCommand:wikipedia-hyperlinker.addHyperlink"
  44. ],
  45. "main": "./dist/extension.js",
  46. "contributes": {
  47. "commands": [
  48. {
  49. "command": "wikipedia-hyperlinker.addHyperlink",
  50. "title": "Wikipedia Hyperlinker: Add Hyperlink"
  51. }
  52. ]
  53. },
  54. "license": "MIT",
  55. "scripts": {
  56. "vscode:prepublish": "npm run package",
  57. "compile": "webpack",
  58. "watch": "webpack --watch",
  59. "package": "webpack --mode production --devtool hidden-source-map",
  60. "compile-tests": "tsc -p . --outDir out",
  61. "watch-tests": "tsc -p . -w --outDir out",
  62. "pretest": "npm run compile-tests && npm run compile && npm run lint",
  63. "lint": "eslint src --ext ts",
  64. "test": "node ./out/test/runTest.js"
  65. },
  66. "devDependencies": {
  67. "@types/glob": "^7.2.0",
  68. "@types/html-escaper": "^3.0.0",
  69. "@types/markdown-escape": "^1.1.0",
  70. "@types/mocha": "^9.0.0",
  71. "@types/node": "16.x",
  72. "@types/vscode": "1.31.0",
  73. "@typescript-eslint/eslint-plugin": "^5.9.1",
  74. "@typescript-eslint/parser": "^5.9.1",
  75. "@vscode/test-electron": "^2.0.3",
  76. "eslint": "^8.6.0",
  77. "glob": "^7.2.0",
  78. "mocha": "^9.1.3",
  79. "ts-loader": "^9.2.6",
  80. "typescript": "^4.5.4",
  81. "webpack": "^5.66.0",
  82. "webpack-cli": "^4.9.1"
  83. },
  84. "dependencies": {
  85. "@endom8rix/async-request": "^1.1.0",
  86. "html-escaper": "^3.0.3",
  87. "markdown-escape": "^1.1.0"
  88. }
  89. }