-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 937 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 937 Bytes
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
{
"name": "pptx-content-extractor",
"version": "1.0.3",
"description": "A Node.js library for extracting slides, notes, and media from PowerPoint (.pptx) files.",
"main": "build/main.js",
"type": "commonjs",
"types": "build/main.d.ts",
"scripts": {
"build": "tsc"
},
"keywords": [
"pptx",
"parse",
"extract",
"PowerPoint",
"slides",
"notes",
"media"
],
"author": "Paul0908",
"homepage": "https://github.com/Paul0908/pptx-content-extractor#readme",
"bugs": {
"url": "https://github.com/Paul0908/pptx-content-extractor/issues"
},
"license": "MIT",
"dependencies": {
"jszip": "^3.10.1",
"xml2js": "^0.6.2"
},
"repository": {
"url": "https://github.com/Paul0908/pptx-content-extractor",
"type": "github"
},
"devDependencies": {
"@types/jszip": "^3.4.1",
"@types/xml2js": "^0.4.14",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
}
}