-
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) · 979 Bytes
/
package.json
File metadata and controls
51 lines (51 loc) · 979 Bytes
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": "dmxapi-cli",
"version": "0.2.2",
"description": "Unified CLI for DMXAPI - AI model API aggregation platform",
"type": "module",
"bin": {
"dmxapi": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest",
"prepublishOnly": "npm run build"
},
"engines": {
"node": ">=20"
},
"keywords": [
"dmxapi",
"ai",
"llm",
"cli",
"openai",
"claude",
"gemini",
"text-to-image",
"text-to-video"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/onee-io/dmxapi-cli.git"
},
"dependencies": {
"chalk": "^5.4.1",
"commander": "^13.1.0",
"dotenv": "^17.3.1",
"micromatch": "^4.0.8",
"ora": "^8.2.0"
},
"devDependencies": {
"@types/micromatch": "^4.0.9",
"@types/node": "^22.13.0",
"tsup": "^8.4.0",
"typescript": "^5.7.3",
"vitest": "^3.0.0"
}
}