-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.96 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.96 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
{
"name": "@sogni-ai/sogni-creative-agent-skill",
"version": "2.1.0",
"description": "Sogni Creative Agent Skill: agent skill and CLI for Sogni AI image and video generation.",
"type": "module",
"main": "sogni-agent.mjs",
"bin": {
"sogni-agent": "sogni-agent.mjs"
},
"scripts": {
"openclaw:sync": "node scripts/sync-openclaw-plugin.mjs",
"test": "node --test test/*.test.mjs test/*.integration.mjs",
"test:integration": "node --test test/*.integration.mjs",
"test:coverage": "node --test --experimental-test-coverage --test-coverage-include=sogni-agent.mjs --test-coverage-lines=50 --test-coverage-branches=35 --test-coverage-functions=50 test/sogni-agent.test.mjs",
"test:coverage:full": "node --test --experimental-test-coverage --test-coverage-include=sogni-agent.mjs --test-coverage-lines=50 --test-coverage-branches=35 --test-coverage-functions=50 test/*.test.mjs test/*.integration.mjs"
},
"keywords": [
"sogni",
"ai",
"agent",
"image-generation",
"video-generation",
"openclaw",
"hermes-agent",
"manus",
"claude",
"claude-code"
],
"author": "Mauvis Ledford",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Sogni-AI/sogni-creative-agent-skill.git"
},
"bugs": {
"url": "https://github.com/Sogni-AI/sogni-creative-agent-skill/issues"
},
"homepage": "https://github.com/Sogni-AI/sogni-creative-agent-skill#readme",
"engines": {
"node": ">=22.11.0"
},
"files": [
"LICENSE",
"README.md",
"SKILL.md",
"llm.txt",
"skill-package.json",
"version.mjs",
"scripts/sync-openclaw-plugin.mjs",
"openclaw-plugin.mjs",
"openclaw.plugin.json",
"env.mjs",
"ssrf-guard.mjs",
"sogni-agent.mjs"
],
"dependencies": {
"@sogni-ai/sogni-client-wrapper": "^1.5.2",
"execa": "^9.6.1",
"json5": "^2.2.3",
"sharp": "^0.34.5"
},
"openclaw": {
"extensions": [
"./openclaw-plugin.mjs"
]
}
}