-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.62 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
{
"name": "@razakadam74/gitmsg",
"version": "0.9.0",
"publishConfig": {
"access": "public"
},
"description": "Fast, offline, deterministic Conventional Commit message generator. No LLM, no API key, no network.",
"keywords": [
"git",
"commit",
"conventional-commits",
"commit-message",
"cli",
"git-hook",
"offline"
],
"homepage": "https://github.com/razakadam74/gitmsg#readme",
"bugs": {
"url": "https://github.com/razakadam74/gitmsg/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/razakadam74/gitmsg.git"
},
"license": "MIT",
"author": "razakadam74",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"gitmsg": "./dist/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepublishOnly": "npm run build",
"release": "changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@eslint/js": "^10.0.1",
"@types/node": "^25.9.1",
"@vitest/coverage-v8": "4.1.9",
"eslint": "^10.4.0",
"eslint-config-prettier": "10.1.8",
"globals": "^17.6.0",
"prettier": "3.9.4",
"tsup": "^8.5.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.4",
"vitest": "^4.1.6"
},
"overrides": {
"esbuild": "0.28.1"
}
}