-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.02 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.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
{
"name": "codemerge-cli",
"version": "1.4.1",
"description": "AI-focused code and data preparation utility",
"license": "MIT",
"author": "CodeMerge Team",
"type": "module",
"main": "dist/cli.js",
"bin": {
"codemerge": "bin/codemerge.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/odutradev/codemerge-cli.git"
},
"keywords": [
"ai",
"code",
"merge",
"preparation",
"cli",
"developer-tools"
],
"scripts": {
"build": "tsc && tsc-alias",
"dev": "tsx watch lib/cli.ts",
"codemerge": "node dist/cli.js",
"publisher": "npx project-publisher --bump-package --build --npm-publish --push",
"prepublishOnly": "npm run build"
},
"dependencies": {
"chokidar": "^3.6.0",
"commander": "^11.1.0",
"glob": "^10.3.10"
},
"devDependencies": {
"@types/node": "^20.10.0",
"tsc-alias": "^1.8.10",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=16.0.0"
},
"files": [
"dist",
"bin"
]
}