-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.85 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
{
"name": "@rawwee/react-pdf-html",
"version": "1.2.1",
"description": "Package for rendering @react-pdf/renderer components as HTML components",
"sideEffects": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm -rf dist",
"build": "npm run clean && npm run build:core",
"build:core": "microbundle src/*.tsx --jsx React.createElement --jsxFragment React.Fragment"
},
"repository": {
"type": "git",
"url": "git+https://github.com/josippapez/react-pdf-html.git"
},
"keywords": [
"React",
"React-PDF",
"PDF"
],
"author": "Josip Papež",
"license": "ISC",
"bugs": {
"url": "https://github.com/josippapez/react-pdf-html/issues"
},
"homepage": "https://github.com/josippapez/react-pdf-html#readme",
"dependencies": {
"@react-pdf/renderer": "^3.4.4"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@babel/preset-env": "^7.24.7",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^26.0.1",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"babel-core": "^6.26.3",
"babel-runtime": "^6.26.0",
"microbundle": "^0.15.1",
"prettier": "^3.3.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rollup": "^4.18.0",
"rollup-plugin-sass": "^1.13.0",
"rollup-plugin-typescript2": "^0.36.0",
"typescript": "^5.5.2"
},
"source": "src/index.ts",
"main": "dist/index.js",
"module": "dist/index.esm.mjs",
"umd:main": "dist/index.umd.js",
"unpkg": "dist/index.umd.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.esm.mjs",
"umd": "./dist/index.umd.js"
},
"./package.json": "./package.json"
}
}