-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
37 lines (37 loc) · 868 Bytes
/
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
{
"name": "react-pdf-tailwind",
"version": "2.3.0",
"description": "Use Tailwind CSS to style PDFs created with react-pdf",
"keywords": [
"tailwind",
"react",
"pdf"
],
"author": "Andreas Anckar",
"homepage": "https://github.com/aanckar/react-pdf-tailwind",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
"typings": "dist/index.d.ts",
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"dev": "tsup src/index.ts --watch",
"lint": "tsc",
"test": "vitest",
"test:run": "vitest --run"
},
"files": [
"dist"
],
"dependencies": {
"@react-pdf/renderer": "^3.1.14",
"tailwindcss": "^3.3.6"
},
"devDependencies": {
"@react-pdf/types": "^2.3.4",
"@types/node": "^20.10.4",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"vitest": "^1.0.4"
}
}