-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.57 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.57 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
{
"name": "@ngrok/remark-mdx-github-alerts",
"version": "0.1.0",
"description": "Remark plugin that transforms GitHub-style alert blockquotes into MDX JSX elements.",
"keywords": [
"mdast",
"mdx",
"remark",
"remark-plugin",
"unified"
],
"url": "https://github.com/ngrok-oss/remark-mdx-github-alerts",
"license": "MIT",
"author": "ngrok",
"repository": {
"type": "git",
"url": "https://github.com/ngrok-oss/remark-mdx-github-alerts"
},
"files": [
"dist",
"package.json"
],
"type": "module",
"packageManager": "pnpm@10.29.3",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "pnpm run compile",
"changeset": "changeset",
"compile": "tsc --project tsconfig.compile.json",
"fmt:check": "oxfmt --check .",
"fmt": "oxfmt --write .",
"lint:fix": "oxlint --fix .",
"lint": "oxlint .",
"precompile": "rm -rf dist tsconfig.compile.tsbuildinfo",
"prepublishOnly": "pnpm run compile",
"test": "vitest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"unist-util-visit": "5.1.0"
},
"devDependencies": {
"@changesets/changelog-github": "0.5.2",
"@changesets/cli": "2.29.8",
"@mdx-js/mdx": "3.1.1",
"@total-typescript/ts-reset": "0.6.1",
"@types/mdast": "^4.0.4",
"@types/node": "24.10.12",
"mdast-util-mdx-jsx": "3.2.0",
"oxfmt": "0.28.0",
"oxlint": "1.43.0",
"tsx": "4.21.0",
"typescript": "5.9.3",
"vitest": "4.0.18"
}
}