-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 2.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
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
{
"name": "react-pdfmake-reconciler",
"version": "0.0.4",
"type": "module",
"license": "MIT",
"author": "Daniel Cheung",
"description": "Writing pdfmake with React JSX using React Reconciler.",
"keywords": [
"react",
"pdfmake",
"react-reconciler"
],
"homepage": "https://danvim.github.io/react-pdfmake-reconciler/",
"bugs": "https://github.com/danvim/react-pdfmake-reconciler/issues",
"main": "./dist/react-pdfmake-reconciler.cjs",
"module": "./dist/react-pdfmake-reconciler.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/danvim/react-pdfmake-reconciler.git"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/react-pdfmake-reconciler.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/react-pdfmake-reconciler.cjs"
}
},
"./react-jsx": {
"types": "./dist/react-jsx.d.ts"
},
"./package.json": "./package.json"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"test": "vitest"
},
"dependencies": {
"@types/pdfkit": "^0.13.3",
"@types/pdfmake": "^0.2.8",
"pdfmake": "^0.2.9",
"react-reconciler": "^0.29.0"
},
"devDependencies": {
"@types/node": "^20.11.5",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@types/react-reconciler": "^0.28.8",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"@vitejs/plugin-react-swc": "^3.5.0",
"eslint": "^8.56.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"prettier": "^3.2.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.3.3",
"vite": "^5.0.5",
"vite-plugin-dts": "^3.7.1",
"vitest": "^1.2.1"
},
"peerDependencies": {
"react": "^18.2.0"
},
"files": [
"dist",
"react-jsx.d.ts"
]
}