-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.67 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
{
"name": "@deckflow/deckhtml",
"version": "0.6.4",
"description": "Convert HTML to PPTX or PNG presentations",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"assets",
"schemas"
],
"bin": {
"deckhtml": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"convert:samples": "npm run build && node scripts/convert-sample-inputs.mjs",
"build:font-index": "npx tsx src/bin/build-embed-font-index.ts",
"build:fa-eot": "node scripts/build-fa-eot.mjs",
"dev": "tsc --watch",
"clean": "rm -rf dist/",
"link:dev": "npm run build && npm link",
"unlink:dev": "npm unlink -g @deckflow/deckhtml",
"global:install": "npm run build && npm install -g .",
"global:uninstall": "npm uninstall -g @deckflow/deckhtml",
"pack:global": "npm run build && npm pack && npm install -g ./deckflow-deckhtml-*.tgz",
"prepublishOnly": "npm run build"
},
"keywords": [
"html",
"pptx",
"powerpoint",
"converter",
"deckhtml"
],
"repository": {
"type": "git",
"url": "git+https://github.com/deckflow/deckhtml.git"
},
"bugs": {
"url": "https://github.com/deckflow/deckhtml/issues"
},
"homepage": "https://github.com/deckflow/deckhtml#readme",
"license": "MIT",
"dependencies": {
"@deckops/sdk": "^0.7.4",
"chrome-launcher": "^1.2.1",
"commander": "^11.1.0",
"jszip": "^3.10.1",
"mathml2omml": "^0.5.0",
"open": "^11.0.0",
"playwright-core": "^1.62.0",
"update-notifier": "^7.3.1"
},
"devDependencies": {
"@types/node": "^20.10.0",
"pptxgenjs": "^4.0.1",
"typescript": "^5.9.3"
},
"peerDependencies": {
"pptxgenjs": "^4.0.1"
}
}