forked from atharva9167j/dom-to-pptx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.44 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.44 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
{
"name": "dom-to-pptx",
"version": "1.1.6",
"description": "A client-side library that converts any HTML element into a fully editable PowerPoint slide. **dom-to-pptx** transforms DOM structures into pixel-accurate `.pptx` content, preserving gradients, shadows, rounded images, and responsive layouts. It translates CSS Flexbox/Grid, linear-gradients, box-shadows, and typography into native PowerPoint shapes, enabling precise, design-faithful slide generation directly from the browser.",
"main": "dist/dom-to-pptx.cjs",
"module": "dist/dom-to-pptx.mjs",
"browser": "dist/dom-to-pptx.bundle.js",
"exports": {
".": {
"import": "./dist/dom-to-pptx.mjs",
"require": "./dist/dom-to-pptx.cjs",
"default": "./dist/dom-to-pptx.cjs"
}
},
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"build": "npx rollup -c",
"lint": "eslint .",
"format": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/atharva9167j/dom-to-pptx.git"
},
"keywords": [
"pptx",
"html-to-pptx",
"powerpoint",
"pptx-generator",
"slide-generator",
"presentation-generator",
"dom",
"dom-to-pptx",
"export",
"browser-export",
"client-side-pptx",
"html-to-powerpoint",
"convert-html",
"css-to-pptx",
"css-to-powerpoint",
"pptx-creator",
"presentation-tools",
"slides",
"slide-creation",
"web-to-pptx",
"web-to-powerpoint",
"frontend-pptx",
"html-rendering",
"layout-engine",
"gradient-support",
"flexbox",
"css-grid",
"typography"
],
"author": "Atharva Dharmendra Jagtap <atharvaj321@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/atharva9167j/dom-to-pptx/issues"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"buffer": "^6.0.3",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"events": "^3.3.0",
"jsdom": "^28.0.0",
"prettier": "^3.7.3",
"process": "^0.11.10",
"rollup-plugin-polyfill-node": "^0.10.1",
"stream-browserify": "^3.0.0",
"util": "^0.12.5",
"vitest": "^4.0.18"
},
"dependencies": {
"fonteditor-core": "^2.6.3",
"html2canvas": "^1.4.1",
"jszip": "^3.10.1",
"opentype.js": "^1.3.4",
"pako": "^2.1.0",
"pptxgenjs": "^3.12.0"
}
}