-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.76 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.76 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
70
71
72
73
74
75
76
{
"name": "next-validate-link",
"version": "1.6.6",
"description": "An utility to validate links in markdown file",
"keywords": [
"NextJs",
"Docs",
"fumadocs",
"markdown"
],
"homepage": "https://next-validate-link.vercel.app",
"repository": "github:fuma-nama/next-validate-link",
"license": "MIT",
"author": "Fuma Nama",
"type": "module",
"packageManager": "pnpm@10.33.1",
"files": [
"dist/*"
],
"scripts": {
"build": "tsdown",
"clean": "rimraf dist",
"dev": "tsdown --watch",
"lint": "biome check",
"format": "biome format --fix",
"test": "vitest",
"types:check": "tsc --noEmit",
"release": "pnpm run build && changeset publish",
"version": "changeset version && pnpm install --lockfile-only"
},
"dependencies": {
"js-yaml": "^4.1.1",
"picocolors": "^1.1.1",
"remark": "^15.0.1",
"remark-gfm": "^4.0.1",
"remark-mdx": "^3.1.1",
"tinyglobby": "^0.2.16",
"unified": "^11.0.5",
"unist-util-visit": "^5.1.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.13",
"@changesets/cli": "^2.31.0",
"@react-router/dev": "^7.14.2",
"@types/js-yaml": "^4.0.9",
"@types/mdast": "^4.0.4",
"@types/node": "25.6.0",
"mdast-util-mdx-jsx": "^3.2.0",
"tsdown": "^0.21.10",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
},
"peerDependencies": {
"@react-router/dev": "7.x.x",
"@types/mdast": "*",
"@types/unist": "*"
},
"peerDependenciesMeta": {
"@types/unist": {
"optional": true
},
"@types/mdast": {
"optional": true
},
"@react-router/dev": {
"optional": true
}
},
"publishConfig": {
"access": "public"
},
"exports": {
".": "./dist/index.mjs",
"./package.json": "./package.json"
}
}