-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
58 lines (58 loc) · 1.68 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
{
"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.5.0",
"html-react-parser": "^5.0.0"
},
"peerDependencies": {
"@react-pdf/renderer": "^3.4.4 || ^4.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"bun-types": "1.1.34",
"lefthook": "1.8.4",
"prettier-package-json": "2.8.0",
"recharts": "2.13.3",
"semantic-release": "<25.0.0",
"typescript": "5.6.3",
"victory": "37.3.2"
},
"engines": {
"node": ">=16"
},
"comments": {
"devDependencies": {
"semantic-release": "Need to lock to pre-23.0.0 until oven-sh/setup-bun supports Node 20+, otherwise 'Release' builds fail with '[semantic-release]: node version >=20.8.1 is required. Found v18.19.0.'"
}
}
}