-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.77 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.77 KB
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
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@luckrya/markdown-it-link-to-card",
"version": "0.3.3",
"description": "A markdown-it plugin to convert link to card.",
"main": "./dist/markdown.esm.min.js",
"module": "./dist/markdown.esm.min.js",
"types": "./types/index.d.ts",
"exports": {
".": {
"require": "./dist/markdown.cjs.min.js",
"import": "./dist/markdown.esm.min.js"
}
},
"files": [
"types",
"dist"
],
"scripts": {
"clean": "rm -rf dist types",
"type:dts": "tsc --emitDeclarationOnly",
"dev": "rollup -c -w",
"build": "npm run clean && npm run type:dts && rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/luckrya/markdown-it-link-to-card.git"
},
"keywords": [
"javascript",
"markdown-it",
"markdown-it-plugin",
"link-to-card",
"link-to-dom",
"url-to-card",
"url-to-dom",
"vue",
"vitepress",
"vuepress"
],
"author": "@luckrya",
"license": "MIT",
"bugs": {
"url": "https://github.com/luckrya/markdown-it-link-to-card/issues"
},
"homepage": "https://github.com/luckrya/markdown-it-link-to-card#readme",
"dependencies": {
"@luckrya/utility": "^0.1.1",
"xmlhttprequest": "^1.8.0"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/preset-env": "^7.19.3",
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-node-resolve": "^14.1.0",
"@types/markdown-it": "^12.2.3",
"@types/node": "^18.8.4",
"markdown-it": "^13.0.1",
"rollup": "^2.79.1",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.8.4"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"packageManager": "pnpm@7.1.0"
}