-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.06 KB
/
package.json
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
{
"name": "@henrmota/shiki-mdx",
"version": "0.0.2",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"/dist",
"package.json"
],
"repository": {
"type": "git",
"url": "https://github.com/henrmota/shiki-mdx"
},
"scripts": {
"build": "tsc && tsc --project tsconfig.cjs.json",
"watch": "tsc -w && tsc -w --project tsconfig.cjs.json",
"test": "echo \"Error: no test specified\" && exit 1"
},
"sideEffects": false,
"type": "module",
"keywords": [
"shiki",
"mdx-remote"
],
"author": "Henrique Mota",
"license": "MIT",
"description": "",
"devDependencies": {
"@types/jest": "^29.5.13",
"@types/mdast": "^4.0.4",
"@types/node": "^22.7.5",
"@types/unist": "^3.0.3",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
},
"peerDependencies": {
"shiki": "^1.0.0"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0"
}
}