-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.25 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 3.25 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
83
84
85
86
87
88
89
90
91
92
{
"name": "@typeweaver/commitweave",
"version": "1.1.0",
"description": "A modern CLI to write smart, structured, and beautiful git commit messages with emoji support, conventional commit rules, AI-powered summaries (optional), and built-in hooks.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json"
},
"bin": {
"commitweave": "./dist/bin.js"
},
"files": [
"dist",
"README.md",
"LICENSE",
"glinr-commit.json"
],
"scripts": {
"build": "npm run clean && npm run build:lib && npm run build:post",
"build:lib": "tsc -p tsconfig.build.json",
"clean": "rm -rf dist",
"build:post": "npm run build:prepare-dist",
"build:prepare-dist": "node scripts/prepare-dist.js",
"bench": "npm run build && tsx scripts/bench.ts",
"check": "tsx scripts/check-commit.ts",
"dev": "tsx watch bin/index.ts",
"prepublishOnly": "npm run build",
"start": "node ./dist/bin.js",
"test": "npx tsx scripts/test-local.ts && npx tsx scripts/test-cli-functions.ts && npx tsx tests/anthropic.spec.ts && npx tsx tests/config.spec.ts",
"test:perf": "tsx tests/perf.spec.ts",
"setup:branding": "node scripts/setup-branding.js",
"bump:patch": "tsx scripts/bump-version.ts patch",
"bump:minor": "tsx scripts/bump-version.ts minor",
"bump:major": "tsx scripts/bump-version.ts major",
"bump:prerelease": "tsx scripts/bump-version.ts prerelease",
"bump:beta": "tsx scripts/bump-version.ts prerelease --preid beta",
"bump:alpha": "tsx scripts/bump-version.ts prerelease --preid alpha",
"release:patch": "tsx scripts/bump-version.ts patch --push",
"release:minor": "tsx scripts/bump-version.ts minor --push",
"release:major": "tsx scripts/bump-version.ts major --push",
"release:beta": "tsx scripts/bump-version.ts prerelease --preid beta --push",
"lint": "eslint src bin tests scripts --ext .ts,.js",
"lint:fix": "eslint src bin tests scripts --ext .ts,.js --fix",
"format": "prettier --write \"src/**/*.{ts,js,json}\" \"bin/**/*.{ts,js}\" \"tests/**/*.{ts,js}\" \"scripts/**/*.{ts,js}\"",
"format:check": "prettier --check \"src/**/*.{ts,js,json}\" \"bin/**/*.{ts,js}\" \"tests/**/*.{ts,js}\" \"scripts/**/*.{ts,js}\"",
"type-check": "tsc --noEmit"
},
"keywords": [
"git",
"commit",
"cli",
"conventional-commits",
"emoji",
"ai"
],
"author": "TypeWeaver",
"license": "MIT",
"dependencies": {
"chalk": "^5.3.0",
"cosmiconfig": "^9.0.0",
"enquirer": "^2.4.1",
"simple-git": "^3.20.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^8.39.0",
"@typescript-eslint/parser": "^8.39.0",
"eslint": "^9.32.0",
"prettier": "^3.6.2",
"tsx": "^4.6.2",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GLINCKER/commitweave.git"
},
"bugs": {
"url": "https://github.com/GLINCKER/commitweave/issues"
},
"homepage": "https://github.com/GLINCKER/commitweave#readme"
}