@shbernal/pptxgenjs 5.0.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,135 @@
1
+ {
2
+ "name": "@shbernal/pptxgenjs",
3
+ "version": "5.0.0",
4
+ "author": {
5
+ "name": "shbernal",
6
+ "url": "https://github.com/shbernal/"
7
+ },
8
+ "description": "Create JavaScript PowerPoint Presentations",
9
+ "homepage": "https://github.com/shbernal/PptxGenJS#readme",
10
+ "license": "MIT",
11
+ "packageManager": "pnpm@11.3.0",
12
+ "type": "module",
13
+ "engines": {
14
+ "node": ">=24"
15
+ },
16
+ "sideEffects": false,
17
+ "exports": {
18
+ ".": {
19
+ "types": "./dist/index.d.ts",
20
+ "browser": "./dist/browser.js",
21
+ "node": "./dist/node.js",
22
+ "default": "./dist/index.js"
23
+ },
24
+ "./core": {
25
+ "types": "./dist/core.d.ts",
26
+ "default": "./dist/core.js"
27
+ },
28
+ "./node": {
29
+ "types": "./dist/node.d.ts",
30
+ "node": "./dist/node.js",
31
+ "default": "./dist/node.js"
32
+ },
33
+ "./browser": {
34
+ "types": "./dist/browser.d.ts",
35
+ "browser": "./dist/browser.js",
36
+ "default": "./dist/browser.js"
37
+ },
38
+ "./standalone": {
39
+ "types": "./dist/standalone.d.ts",
40
+ "browser": "./dist/standalone.js",
41
+ "default": "./dist/standalone.js"
42
+ },
43
+ "./package.json": {
44
+ "default": "./package.json"
45
+ }
46
+ },
47
+ "files": [
48
+ "dist"
49
+ ],
50
+ "types": "./dist/index.d.ts",
51
+ "scripts": {
52
+ "build": "tsdown",
53
+ "start": "pnpm run watch",
54
+ "watch": "tsdown --watch",
55
+ "test": "pnpm run build && vitest run test/regression.test.mjs && vitest run test/schema-validation.test.mjs",
56
+ "test:unit": "pnpm run build && vitest run test/regression.test.mjs",
57
+ "test:schema": "pnpm run build && vitest run test/schema-validation.test.mjs",
58
+ "test:watch": "pnpm run build && vitest --watch test/regression.test.mjs",
59
+ "test:coverage": "pnpm run build && vitest run --coverage test/regression.test.mjs",
60
+ "test:package": "node scripts/package-smoke.mjs",
61
+ "test:demo:node": "node scripts/demo-smoke.mjs node",
62
+ "test:demo:vite": "node scripts/demo-smoke.mjs vite",
63
+ "test:demos": "node scripts/demo-smoke.mjs",
64
+ "typecheck": "tsc -p tsconfig.json --noEmit",
65
+ "strict:check": "tsc -p tsconfig.strict.json --noEmit",
66
+ "strict:null:check": "tsc -p tsconfig.strict-null.json --noEmit",
67
+ "lint": "eslint . --no-warn-ignored",
68
+ "lint:fix": "pnpm run lint -- --fix",
69
+ "format": "prettier package.json pnpm-workspace.yaml tsconfig*.json eslint.config.mjs tsdown.config.ts \"scripts/**/*.mjs\" \"test/**/*.mjs\" \"test/**/*.js\" \".github/**/*.yml\" --write",
70
+ "format:check": "prettier package.json pnpm-workspace.yaml tsconfig*.json eslint.config.mjs tsdown.config.ts \"scripts/**/*.mjs\" \"test/**/*.mjs\" \"test/**/*.js\" \".github/**/*.yml\" --check",
71
+ "package:lint": "node scripts/package-lint.mjs",
72
+ "upstream:signals": "node scripts/upstream-signals-ledger.mjs",
73
+ "upstream:signals:list": "node scripts/upstream-signals-ledger.mjs list",
74
+ "upstream:signals:validate": "node scripts/upstream-signals-ledger.mjs validate",
75
+ "upstream:signals:check": "node scripts/upstream-signals-check.mjs",
76
+ "upstream:signals:check:json": "node scripts/upstream-signals-check.mjs --json",
77
+ "test:tools": "vitest run test/upstream-signals-ledger.test.mjs",
78
+ "prepack": "pnpm run build",
79
+ "check-validator": "node tools/ooxml-validator/check-updates.js",
80
+ "pack:check": "pnpm pack --dry-run --json"
81
+ },
82
+ "dependencies": {
83
+ "jszip": "^3.10.1"
84
+ },
85
+ "publishConfig": {
86
+ "access": "public"
87
+ },
88
+ "devDependencies": {
89
+ "@arethetypeswrong/cli": "^0.18.3",
90
+ "@arethetypeswrong/core": "^0.18.3",
91
+ "@eslint/js": "^10.0.1",
92
+ "@stylistic/eslint-plugin": "^5.10.0",
93
+ "@types/node": "^25.9.2",
94
+ "@typescript-eslint/eslint-plugin": "^8.60.1",
95
+ "@typescript-eslint/parser": "^8.60.1",
96
+ "@vitest/coverage-v8": "^4.1.8",
97
+ "eslint": "^10.4.1",
98
+ "prettier": "^3.8.3",
99
+ "publint": "^0.3.21",
100
+ "tsdown": "^0.22.2",
101
+ "tslib": "^2.8.1",
102
+ "typescript": "^6.0.3",
103
+ "typescript-eslint": "^8.60.1",
104
+ "vitest": "^4.1.8",
105
+ "yaml": "^2.9.0"
106
+ },
107
+ "repository": {
108
+ "type": "git",
109
+ "url": "git+https://github.com/shbernal/PptxGenJS.git"
110
+ },
111
+ "keywords": [
112
+ "es6-powerpoint",
113
+ "html-to-powerpoint",
114
+ "javascript-create-powerpoint",
115
+ "javascript-create-pptx",
116
+ "javascript-generate-pptx",
117
+ "javascript-powerpoint",
118
+ "javascript-powerpoint-charts",
119
+ "javascript-pptx",
120
+ "js-create-powerpoint",
121
+ "js-create-pptx",
122
+ "js-generate-powerpoint",
123
+ "js-powerpoint",
124
+ "js-powerpoint-library",
125
+ "js-powerpoint-pptx",
126
+ "node-powerpoint",
127
+ "officejs-alternative",
128
+ "react-powerpoint",
129
+ "slide-generator",
130
+ "typescript-powerpoint"
131
+ ],
132
+ "bugs": {
133
+ "url": "https://github.com/shbernal/PptxGenJS/issues"
134
+ }
135
+ }