-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.32 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.32 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
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@pdfstudio/pdfstudio",
"version": "0.3.3",
"description": "Professional PDF generation library for Node.js and Browsers. Features native charts, advanced vector graphics, QR codes, interactive forms, and complete TypeScript support.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"browser": "dist/pdfstudio.standalone.js",
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md",
"BROWSER.md",
"BROWSER_MIGRATION.md"
],
"scripts": {
"build": "npm run build:node && npm run build:browser",
"build:node": "tsc",
"build:browser": "node scripts/build-browser.js",
"dev": "tsc --watch",
"test": "jest",
"example": "ts-node examples/simple-chart.ts",
"examples": "mkdir -p examples-output && ts-node examples/all-features.ts",
"prepublishOnly": "npm run build",
"prepare": "npm run build"
},
"keywords": [
"pdf",
"pdf-generation",
"pdf-library",
"nodejs",
"browser",
"isomorphic",
"client-side-pdf",
"browser-pdf",
"typescript",
"charts",
"bar-chart",
"pie-chart",
"line-chart",
"data-visualization",
"tables",
"forms",
"qrcode",
"vector-graphics",
"annotations",
"watermark",
"encryption",
"invoice",
"report",
"certificate",
"gradients",
"multi-page",
"pdf-forms",
"pdf-charts",
"document-generation",
"offline-pdf",
"jamstack"
],
"author": "ideas2code <pdfstudio@ideas2code.dev> (https://github.com/pdfstudio-dev)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/pdfstudio-dev/pdfstudio.git"
},
"bugs": {
"url": "https://github.com/pdfstudio-dev/pdfstudio/issues"
},
"homepage": "https://github.com/pdfstudio-dev/pdfstudio#readme",
"engines": {
"node": ">=14.0.0"
},
"devDependencies": {
"@types/fontkit": "^2.0.8",
"@types/jest": "^29.5.14",
"@types/node": "^20.0.0",
"@types/pako": "^2.0.4",
"@types/qrcode": "^1.5.6",
"@types/sharp": "^0.31.1",
"esbuild": "^0.19.0",
"jest": "^29.0.0",
"ts-jest": "^29.4.5",
"ts-node": "^10.9.0",
"typescript": "^5.0.0"
},
"dependencies": {
"buffer": "^6.0.3",
"fontkit": "^2.0.4",
"pako": "^2.1.0",
"qrcode": "^1.5.4"
},
"optionalDependencies": {
"sharp": "^0.34.5"
}
}