-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.86 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.86 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
{
"name": "gitcoach-cli",
"version": "1.1.4",
"description": "AI-powered Git coach CLI that prevents mistakes before they happen",
"type": "module",
"main": "dist/index.js",
"bin": {
"gitcoach": "./bin/run.js"
},
"scripts": {
"dev": "tsc -w",
"prebuild": "node scripts/inject-version.js",
"build": "tsc && npm run copy-locales",
"copy-locales": "node -e \"const fs=require('fs');const path=require('path');const src='src/i18n/locales';const dest='dist/i18n/locales';fs.mkdirSync(dest,{recursive:true});fs.readdirSync(src).forEach(f=>fs.copyFileSync(path.join(src,f),path.join(dest,f)));\"",
"start": "node ./bin/run.js",
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"clean": "rimraf dist",
"prepublishOnly": "npm run build"
},
"keywords": [
"git",
"cli",
"copilot",
"ai",
"coach",
"helper",
"beginner",
"multilingual"
],
"author": "kposz",
"license": "MIT",
"oclif": {
"bin": "gitcoach",
"dirname": "gitcoach",
"commands": "./dist/commands",
"topicSeparator": " "
},
"files": [
"/bin",
"/dist"
],
"dependencies": {
"@inquirer/prompts": "^7.2.1",
"@oclif/core": "^4.2.1",
"boxen": "^8.0.1",
"chalk": "^5.4.1",
"cli-table3": "^0.6.5",
"conf": "^13.1.0",
"i18next": "^24.2.2",
"ora": "^8.1.1",
"simple-git": "^3.30.0"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.10.7",
"@typescript-eslint/eslint-plugin": "^8.21.0",
"@typescript-eslint/parser": "^8.21.0",
"eslint": "^9.18.0",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"typescript": "^5.7.3"
},
"engines": {
"node": ">=18.0.0"
}
}