-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.42 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.42 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
{
"name": "mdclint",
"version": "0.1.2",
"description": "Markdown Linting",
"main": "dist/index.mjs",
"type": "module",
"types": "./types.d.ts",
"bin": {
"mdclint": "./bin/mdclint.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt-content/mdclint.git"
},
"exports": {
".": {
"types": "./types.d.ts",
"default": "./dist/index.mjs"
},
"./cli": "./dist/cli.mjs"
},
"scripts": {
"prepack": "unbuild",
"lint": "eslint .",
"release": "release-it"
},
"files": [
"dist",
"types.d.ts"
],
"unbuild": {
"rollup": {
"inlineDependencies": true
}
},
"keywords": [
"markdownlint",
"eslint",
"mdclint",
"mdc",
"markdownlint-cli",
"eslint-plugin"
],
"author": "",
"license": "MIT",
"pnpm": {
"patchedDependencies": {
"markdownlint": "patches/markdownlint.patch"
}
},
"peerDependencies": {
"eslint": "^8.57.0 || ^9.0.0"
},
"dependencies": {
"citty": "^0.1.6"
},
"devDependencies": {
"@nuxt/eslint-config": "^1.12.1",
"@types/node": "^25.0.2",
"eslint": "^9.39.2",
"eslint-flat-config-utils": "^2.1.4",
"markdownlint": "^0.40.0",
"mdclint": "workspace:*",
"release-it": "^19.1.0",
"remark-mdc": "https://pkg.pr.new/remark-mdc@305e886",
"unbuild": "^3.6.1",
"c12": "^3.3.2",
"glob": "^13.0.0"
},
"packageManager": "pnpm@10.26.0"
}