-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.32 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.32 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
87
88
89
90
91
92
93
94
95
96
97
{
"name": "presentx",
"version": "2.0.0",
"description": "HTML slide presentation generator with PPTX export, self-healing validation, brand injection, and streaming React viewer",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.es.js",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/index.es.js",
"require": "./dist/index.cjs"
},
"./react": {
"types": "./dist/types/react.d.ts",
"import": "./dist/react.es.js",
"require": "./dist/react.cjs"
},
"./prompts": {
"types": "./dist/types/prompts.d.ts",
"import": "./dist/prompts.es.js",
"require": "./dist/prompts.cjs"
},
"./styles": "./dist/viewer.css"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "vite build --watch",
"build": "npm run clean && vite build",
"clean": "rimraf dist",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"b:clean": "bun run rimraf dist",
"b:build": "bun run b:clean && bun run vite build"
},
"keywords": [
"slides",
"presentation",
"pptx",
"powerpoint",
"html-to-pptx",
"slide-generator",
"dom-to-pptx",
"react",
"typescript",
"chart.js",
"tailwind"
],
"author": "Varun Muppidi",
"repository": {
"type": "git",
"url": "https://github.com/codevakure/presentx.git"
},
"homepage": "https://github.com/codevakure/presentx#readme",
"bugs": {
"url": "https://github.com/codevakure/presentx/issues"
},
"license": "MIT",
"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",
"tslib": "^2.3.1"
},
"devDependencies": {
"@types/node": "^22.5.0",
"@vitejs/plugin-react": "^4.3.4",
"jsdom": "^20.0.3",
"rimraf": "^6.0.1",
"typescript": "^5.8.3",
"vite": "^6.0.3",
"vite-plugin-dts": "^4.3.0",
"vitest": "^4.0.0"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"react-dom": {
"optional": true
}
}
}