-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.35 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
{
"name": "image2slides",
"version": "1.0.1",
"description": "Codex plugin and CLI workflow for turning GPT-image slide visuals into editable PowerPoint decks.",
"license": "MIT",
"homepage": "https://starry-49.github.io/image2slides/",
"repository": {
"type": "git",
"url": "git+https://github.com/Starry-49/image2slides.git"
},
"bugs": {
"url": "https://github.com/Starry-49/image2slides/issues"
},
"keywords": [
"codex-plugin",
"slides",
"pptx",
"powerpoint",
"gpt-image-2",
"image-generation"
],
"bin": {
"image2slides": "./skills/image2slides/scripts/image2slides.py"
},
"files": [
".codex-plugin/",
"agents/",
"assets/",
"examples/",
"hooks/",
"skills/image2slides/SKILL.md",
"skills/image2slides/agents/",
"skills/image2slides/references/",
"skills/image2slides/scripts/image2slides.py",
"pyproject.toml",
"README.md",
"README.zh-CN.md",
"README.ja.md",
"LICENSE",
"tests/test_image2slides.py"
],
"scripts": {
"doctor": "python3 skills/image2slides/scripts/image2slides.py doctor",
"guide": "python3 skills/image2slides/scripts/image2slides.py guide",
"setup:python": "python3 -m pip install -e .",
"test": "PYTHONPATH=skills/image2slides/scripts python3 tests/test_image2slides.py"
},
"engines": {
"node": ">=18"
}
}