-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
88 lines (88 loc) · 2.29 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "remark-pdf",
"version": "0.0.14",
"description": "remark plugin to compile markdown to pdf.",
"main": "lib/index.js",
"module": "lib/index.mjs",
"types": "lib/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.mjs",
"default": "./lib/index.js"
},
"./node": {
"types": "./lib/node.d.ts",
"import": "./lib/node.mjs",
"default": "./lib/node.js"
}
},
"files": [
"lib"
],
"scripts": {
"build": "rollup -c",
"test": "jest",
"tsc": "tsc -p . --noEmit",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build",
"typedoc": "typedoc",
"prepublishOnly": "rimraf lib && npm run build"
},
"dependencies": {
"@types/pdfmake": "^0.1.20",
"pdfmake": "^0.2.4",
"unist-util-visit": "^4.1.0"
},
"devDependencies": {
"@babel/core": "7.23.3",
"@babel/preset-env": "7.23.3",
"@babel/preset-typescript": "7.23.3",
"@rollup/plugin-typescript": "10.0.1",
"@storybook/addon-storysource": "^8.0.9",
"@storybook/addon-webpack5-compiler-swc": "^1.0.2",
"@storybook/react": "^8.0.9",
"@storybook/react-webpack5": "^8.0.9",
"@storybook/source-loader": "^8.0.9",
"@types/mdast": "^3.0.10",
"@types/unist": "2.0.6",
"babel-jest": "29.0.2",
"file-saver": "^2.0.5",
"jest": "29.0.2",
"jest-date-mock": "1.0.8",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-is": "17.0.2",
"remark-footnotes": "4.0.1",
"remark-frontmatter": "4.0.1",
"remark-gfm": "3.0.1",
"remark-math": "5.1.1",
"remark-parse": "10.0.1",
"rimraf": "3.0.2",
"rollup": "2.63.0",
"storybook": "^8.0.9",
"tslib": "2.3.1",
"typedoc": "0.25.1",
"typedoc-plugin-markdown": "3.16.0",
"typescript": "5.1.6",
"unified": "10.1.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/inokawa/remark-pdf.git"
},
"keywords": [
"unist",
"remark",
"mdast",
"markdown",
"pdf"
],
"author": "inokawa <[email protected]> (https://github.com/inokawa/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/inokawa/remark-pdf/issues"
},
"homepage": "https://github.com/inokawa/remark-pdf#readme"
}