-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.59 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "markdown-it-external-link",
"description": "markdown-it plugin that adds `target` and `rel` attributes on external links.",
"version": "1.1.0",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/esm/index.d.ts"
}
},
"types": "dist/esm/index.d.ts",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"LICENSE",
"dist/",
"runkitExample.js"
],
"scripts": {
"build": "rm -rf dist/* && tsc -p tsconfig-esm.json && tsc -p tsconfig-cjs.json && bash fixup",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"test": "npm run test:link && npm run test:tsd",
"test:link": "mocha test/link.js",
"test:tsd": "npx tsd"
},
"repository": {
"type": "git",
"url": "https://github.com/trunkcode/markdown-it-external-link.git"
},
"keywords": [
"markdown-it",
"plugin",
"external-link"
],
"author": "TrunkCode <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/trunkcode/markdown-it-external-link/issues"
},
"homepage": "https://github.com/trunkcode/markdown-it-external-link#readme",
"runkitExampleFilename": "runkitExample.js",
"dependencies": {
"detect-external-link": "2.0.1"
},
"devDependencies": {
"@types/markdown-it": "13.0.2",
"@types/node": "20.7.0",
"@typescript-eslint/eslint-plugin": "6.7.3",
"@typescript-eslint/parser": "6.7.3",
"eslint": "8.50.0",
"mocha": "10.2.0",
"markdown-it": "13.0.2",
"tsd": "0.29.0",
"typescript": "5.2.2"
}
}