-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.41 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.41 KB
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
{
"name": "react-pdf-charts",
"version": "0.0.0-development",
"description": "Allows SVG-based React charts to be rendered in react-pdf",
"license": "MIT",
"author": "Ev Haus",
"homepage": "https://github.com/EvHaus/react-pdf-charts",
"repository": {
"type": "git",
"url": "https://github.com/EvHaus/react-pdf-charts.git"
},
"bugs": {
"url": "https://github.com/EvHaus/react-pdf-charts/issues"
},
"type": "module",
"exports": "./dist/index.js",
"scripts": {
"biome:check": "biome check --write",
"build": "NODE_ENV=production bun ./build.ts",
"lint": "bun typescript && bun biome:check && bun packagelint",
"packagelint": "prettier-package-json --use-tabs --write ./package.json",
"semantic-release": "semantic-release",
"start": "bun examples/index.ts",
"start:dev": "bun --watch examples/index.ts",
"test": "bun lint",
"typescript": "tsc --noEmit"
},
"types": "./dist/index.d.ts",
"dependencies": {
"@react-pdf/types": "^2.9.1",
"html-react-parser": "^6.0.0"
},
"peerDependencies": {
"@react-pdf/renderer": "^4.3.1",
"react": "^18.3.1 || ^19.2.0",
"react-dom": "^18.3.1 || ^19.2.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.15",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"bun-types": "1.3.14",
"lefthook": "2.1.6",
"prettier-package-json": "2.8.0",
"recharts": "2.15.4",
"semantic-release": "25.0.3",
"typescript": "6.0.3",
"victory": "37.3.6"
}
}