-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.95 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.95 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
{
"name": "commit-date-changer",
"version": "1.1.0",
"description": "Interactive CLI tool to safely change Git commit dates",
"main": "dist/cli.js",
"type": "module",
"bin": {
"commit-date": "dist/cli.js"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"dev": "tsx src/cli.ts",
"build": "tsup src/cli.ts --format esm --dts --clean && npm run build:locales",
"build:locales": "mkdir -p dist/locales && cp src/locales/*.json dist/locales/",
"prepublishOnly": "npm run build && npm run lint",
"lint": "eslint \"src/**/*.ts\"",
"format": "prettier --write \"src/**/*.ts\"",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage"
},
"keywords": [
"git",
"commit",
"commit-management",
"date-change",
"date",
"cli",
"interactive",
"git-tools",
"git-history",
"commit-date",
"developer-tools",
"git-automation",
"command-line"
],
"author": "Timur Arbaev",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/arbaev/commit-date-changer.git"
},
"bugs": {
"url": "https://github.com/arbaev/commit-date-changer/issues"
},
"homepage": "https://github.com/arbaev/commit-date-changer#readme",
"dependencies": {
"@inquirer/input": "^2.2.9",
"chalk": "^5.3.0",
"commander": "^12.0.0",
"date-fns": "^3.0.0",
"i18next": "^25.6.0",
"inquirer": "^9.2.0",
"simple-git": "^3.22.0"
},
"devDependencies": {
"@types/inquirer": "^9.0.7",
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^8.46.2",
"@typescript-eslint/parser": "^8.46.2",
"@vitest/coverage-v8": "^4.0.4",
"eslint": "^8.56.0",
"prettier": "^3.2.4",
"tsup": "^8.0.1",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vitest": "^4.0.4"
},
"engines": {
"node": ">=18.0.0"
},
"overrides": {
"glob": "^10.0.0",
"rimraf": "^5.0.0"
}
}