-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.02 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.02 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
{
"name": "binder-cli",
"version": "1.2.5",
"description": "Orchestrate Virtual Monoliths from distributed repositories and define semantic boundaries for AI agents",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"binder": "./bin/binder.js"
},
"files": [
"dist/",
"bin/",
"templates/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"dev": "ts-node src/cli.ts",
"binder": "node dist/cli.js",
"package": "npm run build && npm pack",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src --ext .ts && prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
"lint:fix": "eslint src --ext .ts --fix && prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"clean": "rimraf dist",
"prepublishOnly": "npm run clean && npm run build && npm test",
"typecheck": "tsc --noEmit"
},
"keywords": [
"cli",
"git",
"workspace",
"monorepo",
"ai",
"orchestration",
"virtual-monolith"
],
"author": "Corrjo",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/corrjo/binder.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"commander": "^12.1.0",
"yaml": "^2.6.1",
"zod": "^3.24.1",
"simple-git": "^3.27.0",
"chalk": "^4.1.2",
"ora": "^5.4.1",
"fs-extra": "^11.2.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"semantic-release": "^24.2.0",
"@types/node": "^22.10.2",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"eslint": "^8.57.1",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
}
}