-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathpackage.json
60 lines (59 loc) · 1.49 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
50
51
52
53
54
55
56
57
58
59
60
{
"name": "remark-shiki-twoslash",
"version": "3.1.7",
"license": "MIT",
"homepage": "https://github.com/shikijs/twoslash",
"repository": {
"url": "https://github.com/shikijs/twoslash.git",
"directory": "packages/remark-shiki-twoslash",
"type": "git"
},
"bugs": {
"url": "https://github.com/shikijs/twoslash/issues"
},
"description": "A remark plugin which renders code samples for all languages via Shiki, but has some real cool features for TS/JS code",
"author": "Orta Therox",
"main": "./dist/index.js",
"module": "./dist/remark-shiki-twoslash.esm.js",
"typings": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"lint": "tsdx lint"
},
"dependencies": {
"@types/unist": "^2.0.0",
"@typescript/twoslash": "3.2.1",
"@typescript/vfs": "1.4.0",
"fenceparser": "^2.2.0",
"regenerator-runtime": "^0.13.7",
"shiki-twoslash": "3.1.3",
"shiki": "0.14.3",
"tslib": "2.1.0",
"unist-util-visit": "^2.0.0"
},
"peerDependencies": {
"typescript": ">3"
},
"devDependencies": {
"@mdx-js/mdx": "^1.6.2",
"@types/jest": "^25.1.3",
"@types/node": "14.14.31",
"@types/unist": "^2.0.0",
"babel-jest": "^26.6.3",
"esbuild": "^0.12.9",
"rehype-stringify": "^6.0.1",
"tsdx": "^0.14.1",
"tslib": "^1.10.0",
"typescript": ">3",
"unified": "^8.4.2"
},
"browser": {
"fs": false,
"path": false
}
}