-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3.26 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "remark-magic-link",
"version": "1.0.0",
"description": "🔌 A remark plugin to turn {text} syntax into links, optionally with an icon",
"packageManager": "[email protected]",
"type": "module",
"author": "Aelita <https://github.com/xsjcTony>",
"license": "MIT",
"homepage": "https://remark-magic-link.aelita.me/",
"repository": {
"type": "git",
"url": "https://github.com/xsjcTony/remark-magic-link"
},
"bugs": {
"url": "https://github.com/xsjcTony/remark-magic-link/issues"
},
"keywords": [
"remark",
"remark-plugin",
"remark-magic-link",
"remark-icon-link",
"remark-image-link",
"remark-link",
"magic-link",
"icon-link",
"image-link"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs"
},
"./style.css": "./style.css"
},
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist",
"*.css"
],
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "pnpm lint"
},
"scripts": {
"build": "unbuild",
"release": "pnpm test:ci && bumpp",
"typecheck": "vue-tsc --noEmit",
"lint": "eslint .",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"test:update": "vitest run -u",
"test:ci": "pnpm typecheck && pnpm lint && pnpm test:coverage && pnpm build",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"publish-ci": "tsx scripts/publish.ts"
},
"dependencies": {
"@types/mdast": "^4.0.4",
"hast-util-to-html": "^9.0.3",
"hastscript": "^9.0.0",
"mdast-util-find-and-replace": "^3.0.1"
},
"devDependencies": {
"@aelita-dev/eslint-config": "3.9.1",
"@iconify/json": "^2.2.276",
"@nolebase/vitepress-plugin-enhanced-readabilities": "^2.10.0",
"@nolebase/vitepress-plugin-highlight-targeted-heading": "^2.10.0",
"@shikijs/vitepress-twoslash": "^1.23.1",
"@types/dom-view-transitions": "^1.0.5",
"@types/markdown-it": "^14.1.2",
"@types/node": "^20.17.8",
"@unocss/eslint-plugin": "^0.64.1",
"@unocss/preset-rem-to-px": "^0.64.1",
"@vitest/coverage-v8": "^2.1.5",
"@vitest/eslint-plugin": "^1.1.10",
"@vue/language-server": "^2.1.10",
"bumpp": "^9.8.1",
"bundle-require": "^5.0.0",
"changelogithub": "^0.13.11",
"eslint": "^9.15.0",
"eslint-plugin-vue": "^9.31.0",
"eslint-plugin-vuejs-accessibility": "^2.4.1",
"eslint-processor-vue-blocks": "^0.1.2",
"lint-staged": "^15.2.10",
"rehype-format": "^5.0.1",
"rehype-raw": "^7.0.0",
"rehype-stringify": "^10.0.1",
"remark": "^15.0.1",
"remark-magic-link": "workspace:*",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.1",
"remark-stringify": "^11.0.0",
"sass": "^1.81.0",
"simple-git-hooks": "^2.11.1",
"to-vfile": "^8.0.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"unbuild": "^3.0.0-rc.11",
"unified": "^11.0.5",
"unocss": "^0.64.1",
"vfile": "^6.0.3",
"vite-tsconfig-paths": "^5.1.3",
"vitepress": "^1.5.0",
"vitepress-plugin-group-icons": "^1.3.0",
"vitest": "^2.1.5",
"vue": "^3.5.13",
"vue-tsc": "^2.1.10",
"zx": "^8.2.2"
}
}