gunni 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +118 -0
- package/dist/index.js +6439 -0
- package/package.json +78 -0
package/package.json
ADDED
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "gunni",
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"description": "AI media toolkit — give any agent the ability to create professional media",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"gunni": "./dist/index.js"
|
|
8
|
+
},
|
|
9
|
+
"scripts": {
|
|
10
|
+
"dev": "tsx src/index.ts",
|
|
11
|
+
"dev:server": "tsx src/server.ts",
|
|
12
|
+
"build:app": "vite build --config vite.config.app.ts",
|
|
13
|
+
"build:server": "tsup",
|
|
14
|
+
"build": "npm run build:server && npm run build:app",
|
|
15
|
+
"start": "node dist/server.js",
|
|
16
|
+
"server": "node dist/server.js",
|
|
17
|
+
"test": "vitest run",
|
|
18
|
+
"test:watch": "vitest"
|
|
19
|
+
},
|
|
20
|
+
"engines": {
|
|
21
|
+
"node": ">=18"
|
|
22
|
+
},
|
|
23
|
+
"files": [
|
|
24
|
+
"dist/index.js",
|
|
25
|
+
"README.md",
|
|
26
|
+
"LICENSE"
|
|
27
|
+
],
|
|
28
|
+
"keywords": [
|
|
29
|
+
"cli",
|
|
30
|
+
"ai",
|
|
31
|
+
"image-generation",
|
|
32
|
+
"video-generation",
|
|
33
|
+
"media",
|
|
34
|
+
"mcp",
|
|
35
|
+
"agent",
|
|
36
|
+
"creative",
|
|
37
|
+
"gunni"
|
|
38
|
+
],
|
|
39
|
+
"author": "Gunni <hello@gunni.ai>",
|
|
40
|
+
"license": "MIT",
|
|
41
|
+
"homepage": "https://gunni.ai",
|
|
42
|
+
"repository": {
|
|
43
|
+
"type": "git",
|
|
44
|
+
"url": "https://github.com/munxch/gunni-cli.git"
|
|
45
|
+
},
|
|
46
|
+
"dependencies": {
|
|
47
|
+
"@clack/prompts": "^1.0.1",
|
|
48
|
+
"@fal-ai/client": "^1.9.3",
|
|
49
|
+
"@google/genai": "^1.42.0",
|
|
50
|
+
"@modelcontextprotocol/ext-apps": "^1.1.1",
|
|
51
|
+
"@modelcontextprotocol/sdk": "^1.26.0",
|
|
52
|
+
"@supabase/supabase-js": "^2.97.0",
|
|
53
|
+
"commander": "^14.0.3",
|
|
54
|
+
"express": "^5.2.1",
|
|
55
|
+
"google-auth-library": "^10.5.0",
|
|
56
|
+
"jose": "^6.0.0",
|
|
57
|
+
"ora": "^9.3.0",
|
|
58
|
+
"picocolors": "^1.1.1",
|
|
59
|
+
"posthog-node": "^5.28.8",
|
|
60
|
+
"stripe": "^20.3.1",
|
|
61
|
+
"zod": "^4.3.6"
|
|
62
|
+
},
|
|
63
|
+
"devDependencies": {
|
|
64
|
+
"@types/express": "^5.0.6",
|
|
65
|
+
"@types/node": "^25.3.0",
|
|
66
|
+
"@types/react": "^19.2.14",
|
|
67
|
+
"@types/react-dom": "^19.2.3",
|
|
68
|
+
"@vitejs/plugin-react": "^5.1.4",
|
|
69
|
+
"react": "^19.2.4",
|
|
70
|
+
"react-dom": "^19.2.4",
|
|
71
|
+
"tsup": "^8.5.1",
|
|
72
|
+
"tsx": "^4.21.0",
|
|
73
|
+
"typescript": "^5.9.3",
|
|
74
|
+
"vite": "^7.3.1",
|
|
75
|
+
"vite-plugin-singlefile": "^2.3.0",
|
|
76
|
+
"vitest": "^4.0.18"
|
|
77
|
+
}
|
|
78
|
+
}
|