-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.97 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 1.97 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
80
81
82
{
"name": "@dougcostadev/auto-commit",
"version": "1.0.4",
"description": "🚀 Universal Git Commit Automation - Intelligent batch commits with file type detection",
"main": "dist/cli.js",
"bin": {
"dac": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "ts-node src/cli.ts",
"start": "node dist/cli.js",
"test": "jest",
"lint": "eslint src/**/*.ts",
"format": "prettier --write src/**/*.ts",
"prepublishOnly": "npm run build"
},
"keywords": [
"git",
"commit",
"automation",
"cli",
"batch",
"file-management",
"developer-tools",
"productivity"
],
"author": {
"name": "Douglas Costa",
"email": "douglas@dougcostadev.com",
"url": "https://github.com/dougcostadev"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dougcostadev/auto-commit.git"
},
"bugs": {
"url": "https://github.com/dougcostadev/auto-commit/issues"
},
"homepage": "https://github.com/dougcostadev/auto-commit#readme",
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"boxen": "^7.1.1",
"chalk": "^5.3.0",
"commander": "^11.1.0",
"fast-glob": "^3.3.1",
"figlet": "^1.7.0",
"file-type": "^18.7.0",
"glob": "^10.3.10",
"gradient-string": "^2.0.2",
"inquirer": "^9.2.11",
"mime-types": "^2.1.35",
"ora": "^7.0.1",
"progress": "^2.0.3",
"simple-git": "^3.19.1",
"table": "^6.8.1"
},
"devDependencies": {
"@types/figlet": "^1.5.6",
"@types/gradient-string": "^1.1.6",
"@types/inquirer": "^9.0.3",
"@types/jest": "^29.5.5",
"@types/mime-types": "^2.1.2",
"@types/node": "^20.8.0",
"@types/progress": "^2.0.5",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"eslint": "^8.51.0",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
]
}