@felores/kie-cli 0.1.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 +67 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +5095 -0
- package/package.json +63 -0
package/package.json
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@felores/kie-cli",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Standalone CLI for Kie.ai APIs: generate images, video, music and speech from the terminal. Same models as the Kie.ai MCP server, no MCP client required.",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"bin": {
|
|
7
|
+
"kie-cli": "dist/index.js"
|
|
8
|
+
},
|
|
9
|
+
"type": "module",
|
|
10
|
+
"scripts": {
|
|
11
|
+
"build": "tsc -b",
|
|
12
|
+
"bundle": "node build.mjs",
|
|
13
|
+
"typecheck": "tsc -b --noEmit",
|
|
14
|
+
"dev": "tsx src/index.ts",
|
|
15
|
+
"prepack": "npm run build -w @felores/kie-ai-core && npm run bundle"
|
|
16
|
+
},
|
|
17
|
+
"keywords": [
|
|
18
|
+
"kie.ai",
|
|
19
|
+
"ai",
|
|
20
|
+
"cli",
|
|
21
|
+
"image-generation",
|
|
22
|
+
"video-generation",
|
|
23
|
+
"music-generation",
|
|
24
|
+
"text-to-speech",
|
|
25
|
+
"nano-banana",
|
|
26
|
+
"veo3"
|
|
27
|
+
],
|
|
28
|
+
"author": "felores",
|
|
29
|
+
"license": "MIT",
|
|
30
|
+
"repository": {
|
|
31
|
+
"type": "git",
|
|
32
|
+
"url": "git+https://github.com/felores/kie-ai-mcp-server.git"
|
|
33
|
+
},
|
|
34
|
+
"homepage": "https://github.com/felores/kie-ai-mcp-server#readme",
|
|
35
|
+
"bugs": {
|
|
36
|
+
"url": "https://github.com/felores/kie-ai-mcp-server/issues"
|
|
37
|
+
},
|
|
38
|
+
"publishConfig": {
|
|
39
|
+
"registry": "https://registry.npmjs.org/",
|
|
40
|
+
"access": "public"
|
|
41
|
+
},
|
|
42
|
+
"dependencies": {
|
|
43
|
+
"sqlite3": "^5.1.6",
|
|
44
|
+
"yargs": "^17.7.2",
|
|
45
|
+
"zod": "^3.24.0"
|
|
46
|
+
},
|
|
47
|
+
"devDependencies": {
|
|
48
|
+
"@felores/kie-ai-core": "*",
|
|
49
|
+
"@types/node": "^20.10.0",
|
|
50
|
+
"@types/yargs": "^17.0.33",
|
|
51
|
+
"esbuild": "^0.24.0",
|
|
52
|
+
"tsx": "^4.6.0",
|
|
53
|
+
"typescript": "^5.3.0"
|
|
54
|
+
},
|
|
55
|
+
"engines": {
|
|
56
|
+
"node": ">=18.0.0"
|
|
57
|
+
},
|
|
58
|
+
"files": [
|
|
59
|
+
"dist",
|
|
60
|
+
"README.md",
|
|
61
|
+
"LICENSE"
|
|
62
|
+
]
|
|
63
|
+
}
|