-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 2.98 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 2.98 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "@pdfstudio/pdfstudio",
"version": "0.3.4",
"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": "husky",
"lint": "eslint 'src/**/*.ts' 'tests/**/*.ts'",
"lint:fix": "eslint 'src/**/*.ts' 'tests/**/*.ts' --fix",
"format": "prettier --write 'src/**/*.ts' 'tests/**/*.ts'",
"format:check": "prettier --check 'src/**/*.ts' 'tests/**/*.ts'"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
]
},
"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": {
"@eslint/js": "^10.0.1",
"@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",
"@typescript-eslint/eslint-plugin": "^8.57.0",
"@typescript-eslint/parser": "^8.57.0",
"esbuild": "^0.19.0",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"husky": "^9.1.7",
"jest": "^29.0.0",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1",
"ts-jest": "^29.4.5",
"ts-node": "^10.9.0",
"typescript": "^5.0.0",
"typescript-eslint": "^8.57.0"
},
"dependencies": {
"buffer": "6.0.3",
"fontkit": "2.0.4",
"pako": "2.1.0",
"qrcode": "1.5.4"
},
"optionalDependencies": {
"sharp": "0.34.5"
}
}