-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.56 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.56 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
{
"name": "@octanejs/markdown",
"version": "0.0.12",
"license": "MIT",
"type": "module",
"sideEffects": false,
"engines": {
"node": ">=22.22.2"
},
"description": "react-markdown 10.1.0 bindings for Octane",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/octanejs/octane.git",
"directory": "packages/markdown"
},
"main": "src/index.ts",
"module": "src/index.ts",
"types": "src/index.ts",
"files": [
"src",
"LICENSE",
"README.md",
"UPSTREAM.md",
"LICENSE.upstream"
],
"exports": {
".": "./src/index.ts"
},
"scripts": {
"test": "pnpm upstream:verify && pnpm test:pristine && vitest run --config vitest.config.ts --root . tests/probes/async-component.server.test.ts tests/adoption/consumer.test.ts tests/adoption/consumer.server.test.ts tests/audit tests/differential tests/conformance tests/async tests/hooks tests/validation.test.ts",
"test:architecture": "vitest run --config vitest.config.ts --root . tests/probes/async-component.server.test.ts",
"test:pristine": "node ../../scripts/react-parity/node-full-runner.mjs --root packages/markdown/upstream --file packages/markdown/upstream/test.jsx --loader packages/markdown/upstream/script/load-jsx.js --inventory packages/markdown/audit/pristine-runtime.json",
"upstream:verify": "node audit/verify-provenance.mjs --self-test",
"typecheck": "tsrx-tsc --noEmit -p tsconfig.json && tsrx-tsc --noEmit -p typetests/tsconfig.json"
},
"dependencies": {
"@types/hast": "^3.0.0",
"@types/mdast": "^4.0.0",
"devlop": "^1.0.0",
"hast-util-to-jsx-runtime": "^2.0.0",
"html-url-attributes": "^3.0.0",
"mdast-util-to-hast": "^13.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.0.0",
"unified": "^11.0.0",
"unist-util-visit": "^5.0.0",
"vfile": "^6.0.0"
},
"peerDependencies": {
"octane": "workspace:*"
},
"devDependencies": {
"@octanejs/testing-library": "workspace:*",
"@testing-library/react": "16.3.2",
"@types/node": "catalog:default",
"@types/react": "catalog:markdown-react-oracle",
"@types/react-dom": "catalog:markdown-react-oracle",
"@tsrx/react": "catalog:default",
"concat-stream": "^2.0.0",
"global-jsdom": "^26.0.0",
"jsdom": "^26.0.0",
"octane": "workspace:*",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-markdown": "10.1.0",
"rehype-raw": "^7.0.0",
"rehype-starry-night": "^2.0.0",
"remark-gfm": "^4.0.1",
"remark-toc": "^9.0.0",
"vitest": "catalog:default"
}
}