-
Notifications
You must be signed in to change notification settings - Fork 185
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.37 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
{
"name": "mmx-cli",
"version": "0.0.0-dev",
"description": "CLI for the MiniMax AI Platform",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/MiniMax-AI/cli.git"
},
"homepage": "https://github.com/MiniMax-AI/cli#readme",
"bugs": {
"url": "https://github.com/MiniMax-AI/cli/issues"
},
"engines": {
"node": ">=18"
},
"bin": {
"mmx": "dist/mmx.mjs"
},
"files": [
"dist/mmx.mjs",
"dist/sdk.mjs",
"dist/index.d.ts"
],
"exports": {
"./sdk": {
"import": "./dist/sdk.mjs",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json"
},
"scripts": {
"dev": "bun run src/main.ts",
"build": "bun run build.ts",
"build:dev": "bun run build.ts --dev",
"prepublishOnly": "bun run build",
"lint": "eslint src/ test/",
"typecheck": "tsc --noEmit",
"test": "bun test",
"test:watch": "bun test --watch"
},
"dependencies": {
"@clack/core": "1.0.0",
"@clack/prompts": "1.0.0",
"bun-plugin-dts": "^0.4.0",
"es-toolkit": "^1.46.1",
"jsonc-parser": "^3.3.1",
"picocolors": "^1.1.1",
"smol-toml": "^1.8.0",
"undici": "^6.21.1",
"yaml": "^2.9.0"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/bun": "latest",
"eslint": "^9.24.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.58.0"
}
}