1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- {
- "name": "wikipedia-hyperlinker",
- "author": "Wasi Master <arianmollik323@gmail.com> (https://wasi-master.github.io)",
- "publisher": "WasiMaster",
- "displayName": "Wikipedia Hyperlinker",
- "description": "Adds hyperlinks to markdown and HTML files with articles gotten from Wikipedia",
- "homepage": "https://github.com/wasi-master/wikipedia-hyperlink#readme",
- "version": "0.0.2",
- "bugs": {
- "url": "https://github.com/wasi-master/wikipedia-hyperlink/issues",
- "email": "arianmollik323@gmail.com"
- },
- "repository": {
- "type": "git",
- "url": "https://github.com/wasi-master/wikipedia-hyperlink"
- },
- "engines": {
- "vscode": "^1.31.0"
- },
- "categories": [
- "Other"
- ],
- "keywords": [
- "wikipedia",
- "hyperlink",
- "auto",
- "wiki",
- "insert"
- ],
- "badges": [
- {
- "url": "https://img.shields.io/github/stars/wasi-master/vscode-wikipedia-hyperlink?style=social",
- "href": "https://github.com/wasi-master/vscode-wikipedia-hyperlink",
- "description": "Amount of stars gotten on GitHub"
- },
- {
- "url": "https://img.shields.io/github/license/wasi-master/vscode-wikipedia-hyperlink",
- "href": "https://github.com/wasi-master/vscode-wikipedia-hyperlink",
- "description": "License of the source code"
- }
- ],
- "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": "16.x",
- "@types/vscode": "1.31.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": {
- "@endom8rix/async-request": "^1.1.0",
- "html-escaper": "^3.0.3",
- "markdown-escape": "^1.1.0"
- }
- }
|