-
-
Notifications
You must be signed in to change notification settings - Fork 164
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.09 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.09 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
82
83
84
{
"name": "codehike",
"version": "1.0.7",
"description": "Build rich content websites with Markdown and React",
"keywords": [
"react",
"markdown",
"mdx",
"syntax highlighting",
"rsc",
"code blocks"
],
"homepage": "https://codehike.org",
"bugs": {
"url": "https://github.com/code-hike/codehike/issues"
},
"author": "Rodrigo Pombo",
"type": "module",
"sideEffects": false,
"license": "MIT",
"repository": "code-hike/codehike",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/code-hike"
},
"files": [
"dist/**"
],
"exports": {
"./package.json": "./package.json",
".": "./dist/index.js",
"./mdx": "./dist/mdx.js",
"./blocks": "./dist/blocks.js",
"./code": "./dist/code.js",
"./utils/token-transitions": "./dist/utils/token-transitions.js",
"./utils/static-fallback": "./dist/utils/static-fallback.js",
"./utils/selection": "./dist/utils/selection.js"
},
"types": "index.d.ts",
"typesVersions": {
"*": {
"*": [
"dist/*"
]
}
},
"scripts": {
"build": "tsc -p . ",
"dev": "tsc -p . --watch",
"test": "vitest run",
"watch": "vitest -u",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
"check-exports": "attw --pack ."
},
"dependencies": {
"@code-hike/lighter": "1.0.1",
"diff": "^5.1.0",
"estree-util-visit": "^2.0.0",
"mdast-util-mdx-jsx": "^3.0.0",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.15.4",
"@mdx-js/mdx": "^3.0.0",
"@types/diff": "^5.0.9",
"@types/mdast": "^4.0.3",
"@types/mdx": "^2.0.10",
"@types/node": "^20.10.6",
"@types/react": "^18.2.46",
"@types/react-dom": "^18.2.18",
"@vitest/ui": "^2.0.3",
"front-matter": "^4.0.2",
"mdast-util-from-markdown": "^2.0.0",
"react": "18.3.0-canary-c5b937576-20231219",
"react-dom": "18.3.0-canary-c5b937576-20231219",
"typescript": "^5.3.3",
"unified": "^11.0.4",
"vitest": "^2.0.3",
"zod": "^3.22.4"
},
"publishConfig": {
"access": "public"
}
}