init: html2pptx project scaffold + requirements doc

This commit is contained in:
李进
2026-07-22 17:54:42 +08:00
commit 9744adbd52
5 changed files with 467 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
{
"name": "html2pptx",
"version": "0.1.0",
"description": "HTML to editable PPTX export engine",
"main": "bin/html2pptx.js",
"type": "commonjs",
"bin": {
"html2pptx": "./bin/html2pptx.js"
},
"scripts": {
"test": "node bin/html2pptx.js test/fixtures/simple.html test/output.pptx"
},
"dependencies": {
"playwright": "^1.60.0",
"pptxgenjs": "^4.0.1"
},
"license": "MIT"
}