-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.8 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.8 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
{
"name": "@ikramrasheed/jspdf-table",
"version": "1.2.2",
"description": "A TypeScript library for creating dynamic tables in jsPDF with automatic page breaks and customizable styling",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"browser": "dist/index.umd.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "npm run build:cjs && npm run build:esm && npm run build:umd && npm run build:types",
"build:cjs": "webpack --config webpack.cjs.config.js",
"build:esm": "webpack --config webpack.esm.config.js",
"build:umd": "webpack --config webpack.umd.config.js",
"build:types": "tsc --declaration --emitDeclarationOnly --outDir dist",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "http-server ."
},
"keywords": [
"jspdf",
"pdf",
"table",
"dynamic",
"typescript",
"javascript",
"pdf-generation",
"table-generator"
],
"author": {
"name": "Ikram Rasheed",
"email": "hi@ikramrasheed.com"
},
"contributors": [
{
"name": "Ikram Rasheed",
"email": "hi@ikramrasheed.com"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Ikraam-Rasheed/jspdf-table.git"
},
"bugs": {
"url": "https://github.com/Ikraam-Rasheed/jspdf-table/issues"
},
"homepage": "https://github.com/Ikraam-Rasheed/jspdf-table#readme",
"peerDependencies": {
"jspdf": "^2.0.0 || ^3.0.0"
},
"dependencies": {},
"devDependencies": {
"@types/jspdf": "^1.3.3",
"http-server": "^14.1.1",
"jspdf": "^3.0.1",
"ts-loader": "^9.5.2",
"typescript": "^5.8.3",
"webpack": "^5.101.0",
"webpack-cli": "^6.0.1"
}
}