-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.12 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@carloseduardobatista/pegasus-report-stream",
"description": "A client-side high-performance report generator that utilizes data streaming",
"repository": {
"type": "git",
"url": "https://github.com/carloseduardodb/pegasus-report-stream"
},
"version": "0.0.4",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"keywords": [
"report",
"stream",
"pdf",
"excel",
"react",
"next",
"typescript",
"big-report",
"high-performance",
"chunked"
],
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/pegasus-report-stream"
},
"scripts": {
"build": "prettier --write src/ && npm run test && npm run remove:dist && npm run update:version && npm run build:esm && npm run build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module CommonJS --outDir dist/cjs",
"update:version": "npm version patch --no-git-tag-version",
"remove:dist": "rmdir /s /q dist",
"test": "ts-node-test src/test/",
"test:watch": "ts-node-test src/test/ --watch"
},
"author": "Carlos Eduardo Dias Batista",
"license": "SEE LICENSE IN LICENSE.md",
"devDependencies": {
"@types/node": "^18.11.18",
"ts-node-test": "^0.4.1",
"typescript": "^4.5.2"
},
"engines": {
"node": ">=14.0.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all",
"last 2 versions",
"not IE <= 11",
"not IE_Mob <= 11",
"not dead and not chrome <= 49",
"not Firefox < 60",
"not Safari < 12.1",
"not Samsung < 8.2",
"not iOS < 12.2"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"exceljs": "^4.3.0",
"jspdf": "^2.5.1",
"jspdf-autotable": "^3.5.28"
}
}