-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.67 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
{
"name": "git-command-generator",
"version": "1.0.14",
"description": "Terminal git workflows with OpenRouter AI commit messages (gitgen / gg CLI)",
"keywords": [
"git",
"cli",
"commit",
"conventional-commits",
"openrouter",
"gitgen"
],
"license": "SEE LICENSE IN LICENSE",
"type": "module",
"bin": {
"gitgen": "./dist/cli.js",
"git-gen": "./dist/cli.js",
"gg": "./dist/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MusicMaster4/gitgen.git"
},
"scripts": {
"dev": "next dev -p 2001",
"build": "next build",
"build:cli": "tsup && node scripts/postbuild-cli.mjs",
"prepublishOnly": "npm run build:cli",
"start": "next start -p 2001",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"here": "node scripts/open-here.mjs",
"cli": "npm run build:cli && node dist/cli.js",
"test": "tsx --test test/**/*.test.ts",
"version:show": "npm run build:cli && node dist/cli.js version",
"version:patch": "tsx scripts/bump-version.ts patch",
"version:minor": "tsx scripts/bump-version.ts minor",
"version:major": "tsx scripts/bump-version.ts major"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.3.2",
"@types/node": "^22",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"eslint": "^9.39.4",
"eslint-config-next": "16.2.10",
"next": "16.2.10",
"react": "19.2.7",
"react-dom": "19.2.7",
"tailwindcss": "^4.3.2",
"tsup": "^8.5.0",
"tsx": "^4.20.3",
"typescript": "^5.9.3"
}
}