-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.63 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.63 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
77
78
79
80
81
{
"type": "module",
"name": "@luma-dev/my-unified",
"version": "0.0.0-dev",
"description": "",
"files": [
"dist"
],
"exports": {
"./rehype-add-slug": "./dist/rehype-add-slug.js",
"./remark-term": "./dist/remark-term.js",
"./rehype-katex": "./dist/rehype-katex.js",
"./rehype-wrap": "./dist/rehype-wrap.js",
"./rehype-save": "./dist/rehype-save.js",
"./remark-meta": "./dist/remark-meta.js",
"./rehype-clean-internal": "./dist/rehype-clean-internal.js",
"./rehype-proc-term": "./dist/rehype-proc-term.js",
"./rehype-code-meta": "./dist/rehype-code-meta.js",
"./rehype-replace-text": "./dist/rehype-replace-text.js",
"./rehype-counter": "./dist/rehype-counter.js",
"./katex-ex": "./dist/katex-ex.js",
"./types": "./dist/types.js"
},
"scripts": {
"lint": "eslint --ext .ts,.tsx . && prettier --list-different .",
"lint-fix": "eslint --ext .ts,.tsx . --fix && prettier --write .",
"build": "tsc -p tsconfig.build.json",
"examples": "shx rm -rf examples/es/output examples/render/output && bun run ./scripts/debug-render-es.ts && bun run ./scripts/debug-render-example.ts",
"typecheck": "tsc --noEmit",
"typecheck-watch": "tsc --noEmit --watch",
"test": "vitest"
},
"keywords": [],
"author": "Luma <[email protected]>",
"license": "CC0-1.0",
"devDependencies": {
"@mdx-js/mdx": "^3.0.0",
"@types/estree": "^1.0.5",
"@types/estree-jsx": "^1.0.4",
"@types/hast": "^3.0.3",
"@types/node": "^20.11.4",
"@types/prompt": "^1.1.8",
"@types/react": "^18.2.48",
"@types/unist": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"eslint": "^8.56.0",
"mdast": "^3.0.0",
"mdast-util-from-markdown": "^2.0.0",
"mdast-util-mdx-expression": "^2.0.0",
"mdast-util-mdx-jsx": "^3.0.0",
"mdast-util-mdxjs-esm": "^2.0.1",
"micromark-util-types": "^2.0.0",
"prettier": "^3.2.4",
"prompt": "^1.3.0",
"react": "^18.2.0",
"remark-breaks": "^4.0.0",
"remark-frontmatter": "^5.0.0",
"remark-math": "^6.0.0",
"semantic-release": "^23.0.0",
"shx": "^0.3.4",
"typescript": "^5.3.3",
"vitest": "^1.2.0"
},
"engines": {
"node": ">=20",
"npm": ">=10"
},
"packageManager": "[email protected]+sha256.ec92e7332e3f7aef6feb2b3c9585fde534cd56905cf26e77debc69e4e2b44892",
"dependencies": {
"@luma-dev/option-ts": "npm:@jsr/luma-dev__option-ts@^1.1.0",
"@luma-dev/unist-util-visit-fast": "^1.1.0",
"hast-util-to-estree": "^3.1.0",
"hast-util-to-text": "4",
"yaml": "2",
"zod": "3"
},
"publishConfig": {
"access": "public"
}
}