@jsamuel1/pptxgenjs 4.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,108 @@
1
+ {
2
+ "name": "@jsamuel1/pptxgenjs",
3
+ "version": "4.1.0",
4
+ "author": {
5
+ "name": "Joshua Samuel",
6
+ "url": "https://github.com/jsamuel1/"
7
+ },
8
+ "contributors": [{
9
+ "name": "Brent Ely",
10
+ "url": "https://github.com/gitbrent/"
11
+ }],
12
+ "description": "Create JavaScript PowerPoint Presentations — fork with slide transitions, entrance animations, gradient fills, and 20+ OOXML correctness fixes",
13
+ "homepage": "https://gitbrent.github.io/PptxGenJS/",
14
+ "license": "MIT",
15
+ "exports": {
16
+ "types": "./types/index.d.ts",
17
+ "import": "./dist/pptxgen.es.js",
18
+ "require": "./dist/pptxgen.cjs.js"
19
+ },
20
+ "main": "dist/pptxgen.cjs.js",
21
+ "module": "dist/pptxgen.es.js",
22
+ "files": [
23
+ "dist",
24
+ "types"
25
+ ],
26
+ "types": "types",
27
+ "scripts": {
28
+ "build": "rollup -c --bundleConfigAsCjs",
29
+ "start": "gulp",
30
+ "ship": "gulp ship",
31
+ "defs": "gulp reactTestDefs",
32
+ "watch": "rollup -cw",
33
+ "pretest": "npm run build",
34
+ "test": "node test/run.js && node test/run-schema.js",
35
+ "schema-test": "node test/run-schema.js",
36
+ "check-validator": "node tools/ooxml-validator/check-updates.js",
37
+ "release-test": "npm test && node test/release/_runner.js"
38
+ },
39
+ "browser": {
40
+ "express": false,
41
+ "fs": false,
42
+ "https": false,
43
+ "image-size": false,
44
+ "node:fs": false,
45
+ "node:https": false,
46
+ "os": false,
47
+ "path": false
48
+ },
49
+ "dependencies": {
50
+ "@types/node": "^22.8.1",
51
+ "https": "^1.0.0",
52
+ "image-size": "^1.2.1",
53
+ "jszip": "^3.10.1"
54
+ },
55
+ "devDependencies": {
56
+ "@eslint/js": "^9.25.1",
57
+ "@rollup/plugin-commonjs": "^28.0.1",
58
+ "@rollup/plugin-node-resolve": "^16.0.1",
59
+ "@stylistic/eslint-plugin": "^4.2.0",
60
+ "@typescript-eslint/eslint-plugin": "^8.31.0",
61
+ "@typescript-eslint/parser": "^8.31.0",
62
+ "eslint": "^9.25.1",
63
+ "express": "^5.1.0",
64
+ "gulp": "^5.0.0",
65
+ "gulp-concat": "^2.6.1",
66
+ "gulp-delete-lines": "0.0.7",
67
+ "gulp-ignore": "^3.0.0",
68
+ "gulp-insert": "^0.5.0",
69
+ "gulp-sourcemaps": "^3.0.0",
70
+ "gulp-uglify": "^3.0.2",
71
+ "rollup": "^4.24.2",
72
+ "rollup-plugin-typescript2": "^0.36.0",
73
+ "tslib": "^2.8.0",
74
+ "typescript": "^5.6.3",
75
+ "typescript-eslint": "^8.31.0",
76
+ "playwright": "^1.60.0"
77
+ },
78
+ "repository": {
79
+ "type": "git",
80
+ "url": "git+https://github.com/jsamuel1/PptxGenJS.git"
81
+ },
82
+ "keywords": [
83
+ "fork",
84
+ "pptx-animations",
85
+ "es6-powerpoint",
86
+ "html-to-powerpoint",
87
+ "javascript-create-powerpoint",
88
+ "javascript-create-pptx",
89
+ "javascript-generate-pptx",
90
+ "javascript-powerpoint",
91
+ "javascript-powerpoint-charts",
92
+ "javascript-pptx",
93
+ "js-create-powerpoint",
94
+ "js-create-pptx",
95
+ "js-generate-powerpoint",
96
+ "js-powerpoint",
97
+ "js-powerpoint-library",
98
+ "js-powerpoint-pptx",
99
+ "node-powerpoint",
100
+ "officejs-alternative",
101
+ "react-powerpoint",
102
+ "slide-generator",
103
+ "typescript-powerpoint"
104
+ ],
105
+ "bugs": {
106
+ "url": "https://github.com/jsamuel1/PptxGenJS/issues"
107
+ }
108
+ }