forked from gitbrent/PptxGenJS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.52 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.52 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
{
"name": "pptxgenjs",
"version": "4.0.1",
"author": {
"name": "Brent Ely",
"url": "https://github.com/gitbrent/"
},
"description": "Create JavaScript PowerPoint Presentations",
"homepage": "https://gitbrent.github.io/PptxGenJS/",
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/pptxgen.d.ts",
"import": "./dist/pptxgen.es.js",
"require": "./dist/pptxgen.cjs.js"
}
},
"main": "dist/pptxgen.cjs.js",
"module": "dist/pptxgen.es.js",
"types": "dist/pptxgen.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "node --test --import tsx tests/*.test.ts",
"lint": "eslint src/"
},
"browser": {
"fs": false,
"node:fs": false,
"node:https": false,
"os": false,
"path": false
},
"dependencies": {
"image-size": "^1.2.1",
"jszip": "^3.10.1",
"xmlbuilder2": "^4.0.3"
},
"devDependencies": {
"@eslint/js": "^9.25.1",
"@stylistic/eslint-plugin": "^4.2.0",
"@types/node": "^22.8.1",
"@typescript-eslint/eslint-plugin": "^8.31.0",
"@typescript-eslint/parser": "^8.31.0",
"eslint": "^9.25.1",
"tsup": "^8.0.0",
"tsx": "^4.21.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.31.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gitbrent/PptxGenJS.git"
},
"keywords": [
"javascript-powerpoint",
"javascript-pptx",
"typescript-powerpoint",
"node-powerpoint",
"react-powerpoint",
"slide-generator",
"pptx"
],
"bugs": {
"url": "https://github.com/gitbrent/PptxGenJS/issues"
}
}