package.json 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. {
  2. "name": "wikipedia-hyperlinker",
  3. "author": "Wasi Master <arianmollik323@gmail.com> (https://wasi-master.github.io)",
  4. "displayName": "Wikipedia Hyperlinker",
  5. "description": "Adds hyperlinks to markdown and HTML files with articles gotten from Wikipedia",
  6. "homepage": "https://github.com/wasi-master/wikipedia-hyperlinker#readme",
  7. "version": "0.0.1",
  8. "bugs": {
  9. "url": "https://github.com/wasi-master/wikipedia-hyperlinker/issues",
  10. "email": "arianmollik323@gmail.com"
  11. },
  12. "repository": "https://github.com/wasi-master/wikipedia-hyperlinker",
  13. "engines": {
  14. "vscode": "^1.63.0"
  15. },
  16. "categories": [
  17. "Other"
  18. ],
  19. "activationEvents": [
  20. "onCommand:wikipedia-hyperlinker.addHyperlink"
  21. ],
  22. "main": "./dist/extension.js",
  23. "contributes": {
  24. "commands": [
  25. {
  26. "command": "wikipedia-hyperlinker.addHyperlink",
  27. "title": "Wikipedia Hyperlinker: Add Hyperlink"
  28. }
  29. ]
  30. },
  31. "license": "MIT",
  32. "scripts": {
  33. "vscode:prepublish": "npm run package",
  34. "compile": "webpack",
  35. "watch": "webpack --watch",
  36. "package": "webpack --mode production --devtool hidden-source-map",
  37. "compile-tests": "tsc -p . --outDir out",
  38. "watch-tests": "tsc -p . -w --outDir out",
  39. "pretest": "npm run compile-tests && npm run compile && npm run lint",
  40. "lint": "eslint src --ext ts",
  41. "test": "node ./out/test/runTest.js"
  42. },
  43. "devDependencies": {
  44. "@types/glob": "^7.2.0",
  45. "@types/html-escaper": "^3.0.0",
  46. "@types/markdown-escape": "^1.1.0",
  47. "@types/mocha": "^9.0.0",
  48. "@types/node": "14.x",
  49. "@types/vscode": "^1.63.0",
  50. "@typescript-eslint/eslint-plugin": "^5.9.1",
  51. "@typescript-eslint/parser": "^5.9.1",
  52. "@vscode/test-electron": "^2.0.3",
  53. "eslint": "^8.6.0",
  54. "glob": "^7.2.0",
  55. "mocha": "^9.1.3",
  56. "ts-loader": "^9.2.6",
  57. "typescript": "^4.5.4",
  58. "webpack": "^5.66.0",
  59. "webpack-cli": "^4.9.1"
  60. },
  61. "dependencies": {
  62. "axios": "^0.25.0",
  63. "html-escaper": "^3.0.3",
  64. "markdown-escape": "^1.1.0"
  65. }
  66. }