123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- {
- "name": "wikipedia-hyperlinker",
- "author": "Wasi Master <arianmollik323@gmail.com> (https://wasi-master.github.io)",
- "displayName": "Wikipedia Hyperlinker",
- "description": "Adds hyperlinks to markdown and HTML files with articles gotten from Wikipedia",
- "homepage": "https://github.com/wasi-master/wikipedia-hyperlinker#readme",
- "version": "0.0.1",
- "bugs": {
- "url": "https://github.com/wasi-master/wikipedia-hyperlinker/issues",
- "email": "arianmollik323@gmail.com"
- },
- "repository": "https://github.com/wasi-master/wikipedia-hyperlinker",
- "engines": {
- "vscode": "^1.63.0"
- },
- "categories": [
- "Other"
- ],
- "activationEvents": [
- "onCommand:wikipedia-hyperlinker.addHyperlink"
- ],
- "main": "./dist/extension.js",
- "contributes": {
- "commands": [
- {
- "command": "wikipedia-hyperlinker.addHyperlink",
- "title": "Wikipedia Hyperlinker: Add Hyperlink"
- }
- ]
- },
- "license": "MIT",
- "scripts": {
- "vscode:prepublish": "npm run package",
- "compile": "webpack",
- "watch": "webpack --watch",
- "package": "webpack --mode production --devtool hidden-source-map",
- "compile-tests": "tsc -p . --outDir out",
- "watch-tests": "tsc -p . -w --outDir out",
- "pretest": "npm run compile-tests && npm run compile && npm run lint",
- "lint": "eslint src --ext ts",
- "test": "node ./out/test/runTest.js"
- },
- "devDependencies": {
- "@types/glob": "^7.2.0",
- "@types/html-escaper": "^3.0.0",
- "@types/markdown-escape": "^1.1.0",
- "@types/mocha": "^9.0.0",
- "@types/node": "14.x",
- "@types/vscode": "^1.63.0",
- "@typescript-eslint/eslint-plugin": "^5.9.1",
- "@typescript-eslint/parser": "^5.9.1",
- "@vscode/test-electron": "^2.0.3",
- "eslint": "^8.6.0",
- "glob": "^7.2.0",
- "mocha": "^9.1.3",
- "ts-loader": "^9.2.6",
- "typescript": "^4.5.4",
- "webpack": "^5.66.0",
- "webpack-cli": "^4.9.1"
- },
- "dependencies": {
- "axios": "^0.25.0",
- "html-escaper": "^3.0.3",
- "markdown-escape": "^1.1.0"
- }
- }
|