-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·63 lines (63 loc) · 1.59 KB
/
package.json
File metadata and controls
executable file
·63 lines (63 loc) · 1.59 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
{
"name": "monorepo-cli",
"version": "0.2.0",
"description": "Combine multiple Git repositories into a monorepo with pnpm, yarn, or npm workspace support",
"type": "module",
"bin": {
"monorepo": "./bin/monorepo.js",
"mr": "./bin/monorepo.js"
},
"exports": "./dist/index.js",
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:unit": "vitest run tests/unit",
"test:integration": "vitest run tests/integration",
"test:e2e": "vitest run tests/e2e --exclude '**/real-repos*'",
"test:e2e:network": "vitest run tests/e2e/real-repos.test.ts",
"test:coverage": "vitest run --coverage",
"test:all": "vitest run tests/",
"build:ui": "cd ui && npx vite build",
"dev:ui": "cd ui && npx vite --port 5173",
"monorepo": "node ./bin/monorepo.js",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@inquirer/prompts": "^7.0.0",
"chalk": "^5.3.0",
"commander": "^12.0.0",
"express": "^5.2.1",
"fs-extra": "^11.2.0",
"simple-git": "^3.22.0",
"ws": "^8.19.0"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/fs-extra": "^11.0.0",
"@types/node": "^20.0.0",
"@types/supertest": "^7.2.0",
"@types/ws": "^8.18.1",
"@vitest/coverage-v8": "^2.0.0",
"supertest": "^7.2.2",
"tsup": "^8.0.0",
"typescript": "^5.3.0",
"vitest": "^2.0.0"
},
"keywords": [
"monorepo",
"cli",
"git",
"workspace",
"pnpm",
"yarn",
"npm",
"turborepo",
"nx"
],
"license": "MIT"
}