-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
141 lines (141 loc) · 4.19 KB
/
package.json
File metadata and controls
141 lines (141 loc) · 4.19 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"name": "@codedir/mimir-code",
"version": "0.1.7",
"private": true,
"description": "Platform-agnostic, BYOK AI coding agent CLI",
"main": "dist/index.js",
"bin": {
"mimir": "dist/cli.mjs"
},
"type": "module",
"workspaces": [
"packages/*"
],
"files": [
"dist",
"scripts/templates",
"src/cli/themes"
],
"scripts": {
"dev": "tsx src/cli.ts",
"build": "yarn build:packages && tsup",
"build:packages": "yarn workspace @codedir/mimir-core build && yarn workspace @codedir/mimir-server build && yarn workspace @codedir/mimir-teams-contracts build",
"build:binary": "bun build src/cli.ts --compile --outfile dist/binaries/mimir",
"build:binary:all": "node scripts/build-binaries.js",
"test": "vitest run",
"test:watch": "vitest",
"test:unit": "vitest run tests/unit",
"test:integration": "vitest run tests/integration",
"test:coverage": "vitest run --coverage",
"test:packages": "yarn workspace @codedir/mimir-core test",
"lint": "eslint src tests --ext .ts",
"lint:fix": "eslint src tests --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
"typecheck": "tsc --build --verbose",
"quality:deadcode": "knip",
"quality:duplicates": "jscpd src --min-lines 10 --min-tokens 50",
"validate": "yarn typecheck && yarn lint && yarn test",
"validate:full": "yarn typecheck && yarn lint && yarn test:coverage && yarn quality:deadcode",
"clean": "yarn workspace @codedir/mimir-core clean && yarn workspace @codedir/mimir-server clean && rm -rf dist",
"contracts:link": "node scripts/link-local-contracts.js",
"contracts:unlink": "node scripts/unlink-local-contracts.js",
"prepare": "husky"
},
"keywords": [
"ai",
"cli",
"coding-agent",
"llm",
"typescript",
"cross-platform"
],
"author": "Codedir Labs",
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/codedir-labs/mimir-code.git"
},
"homepage": "https://github.com/codedir-labs/mimir-code#readme",
"bugs": {
"url": "https://github.com/codedir-labs/mimir-code/issues"
},
"dependencies": {
"axios": "^1.7.9",
"boxen": "^8.0.1",
"chalk": "^5.4.1",
"commander": "^12.1.0",
"dockerode": "^4.0.2",
"dotenv": "^16.4.7",
"drizzle-orm": "^0.45.1",
"execa": "^9.5.2",
"fast-glob": "^3.3.3",
"figures": "^6.1.0",
"gpt-tokenizer": "^3.4.0",
"ink": "^5.1.0",
"ink-select-input": "^6.0.0",
"ink-spinner": "^5.0.0",
"ink-table": "^3.1.0",
"ink-text-input": "^6.0.0",
"ora": "^8.2.0",
"p-retry": "^6.2.1",
"react": "^18.3.1",
"sql.js": "^1.12.0",
"uuid": "^13.0.0",
"winston": "^3.17.0",
"winston-daily-rotate-file": "^5.0.0",
"yaml": "^2.7.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@commitlint/cli": "^20.3.0",
"@commitlint/config-conventional": "^20.3.0",
"@eslint/js": "^9.17.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.1.0",
"@types/crypto-js": "^4.2.2",
"@types/dockerode": "^3.3.33",
"@types/node": "^22.10.5",
"@types/react": "^18.3.18",
"@types/sql.js": "^1.4.9",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"@vitest/coverage-v8": "^2.1.8",
"adm-zip": "^0.5.16",
"crypto-js": "^4.2.0",
"drizzle-kit": "^0.31.8",
"esbuild": "^0.25.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^29.12.1",
"eslint-plugin-sonarjs": "^3.0.1",
"husky": "^9.1.7",
"ink-testing-library": "^4.0.0",
"jscpd": "^4.0.5",
"keytar": "^7.9.0",
"knip": "^5.41.1",
"lint-staged": "^16.2.7",
"msw": "^2.7.0",
"prettier": "^3.4.2",
"react-devtools-core": "^5.3.2",
"react-dom": "^18.3.1",
"tar": "^7.5.2",
"testcontainers": "^10.17.2",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
]
},
"resolutions": {
"esbuild": "^0.25.0"
},
"engines": {
"node": ">=18.0.0"
}
}