-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.53 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": "codev-ai",
"version": "0.4.2",
"description": "CoDev — AI Coding Agent Hub. Install, configure, and manage multiple AI coding agents.",
"keywords": [
"ai",
"cli",
"coding-agent"
],
"type": "module",
"bin": {
"codevhub": "dist/index.js"
},
"files": [
"dist"
],
"packageManager": "pnpm@10.26.0",
"scripts": {
"dev": "tsx src/index.tsx",
"build": "tsx build.ts",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"check": "biome check",
"fix": "biome check --write",
"prepare": "husky",
"prepublishOnly": "pnpm check && pnpm typecheck && pnpm test && pnpm build && node dist/index.js --version",
"prepack": "mv README.md .readme-repo.bak && mv README.npm.md README.md",
"postpack": "mv README.md README.npm.md && mv .readme-repo.bak README.md"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"pnpm check"
]
},
"dependencies": {
"@iarna/toml": "^2.2.5",
"adm-zip": "^0.5.18",
"ink": "^7.1.0",
"ink-spinner": "^5.0.0",
"jsonc-parser": "^3.3.1",
"open": "^11.0.0",
"react": "^19.2.7"
},
"devDependencies": {
"@biomejs/biome": "^2.5.1",
"@types/adm-zip": "^0.5.8",
"@types/iarna__toml": "^2.0.5",
"@types/node": "^26.0.1",
"@types/react": "^19.2.17",
"esbuild": "^0.28.1",
"husky": "^9.1.7",
"ink-testing-library": "^4.0.0",
"lint-staged": "^17.0.8",
"tsx": "^4.22.4",
"typescript": "^6.0.3",
"vitest": "^4.1.9"
}
}