-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 949 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 949 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
{
"name": "mimo-code",
"version": "1.0.0",
"description": "CLI coding agent for the Mimo large language model",
"type": "module",
"bin": {
"mimo": "./bin/mimo.js"
},
"scripts": {
"build": "tsup",
"dev": "tsx src/entrypoints/cli.tsx",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"lint": "eslint src/"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"chalk": "^5.3.0",
"clipboardy": "^5.3.1",
"commander": "^12.0.0",
"figures": "^6.1.0",
"glob": "^10.3.0",
"ink": "^5.0.0",
"react": "^18.3.0",
"strip-ansi": "^7.1.0",
"zod": "^3.23.0",
"zod-to-json-schema": "^3.25.2"
},
"devDependencies": {
"@types/node": "^20.14.0",
"@types/react": "^18.3.0",
"eslint": "^9.0.0",
"tsup": "^8.1.0",
"tsx": "^4.15.0",
"typescript": "^5.5.0",
"typescript-eslint": "^8.0.0",
"vitest": "^1.6.0"
}
}