-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.1 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.1 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
{
"name": "commit-it",
"version": "1.0.2",
"description": "Standardized git commits with AI message generation, interactive prompts, validation, and GitHub integration. Works as a CLI, inside AI agents, and as a programmable TypeScript API.",
"bin": {
"commit-it": "./dist/cli.js",
"cit": "./dist/cli.js",
"commit": "./dist/cli.js"
},
"homepage": "https://github.com/TimMikeladze/commit-it#readme",
"bugs": {
"url": "https://github.com/TimMikeladze/commit-it/issues"
},
"license": "MIT",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/TimMikeladze/commit-it.git"
},
"scripts": {
"build": "bunup",
"dev": "bunup --watch",
"prepare": "bun simple-git-hooks",
"lint": "bun biome check --diagnostic-level=error . && bun biome format .",
"lint:fix": "bun biome check --diagnostic-level=error --unsafe --write . && bun biome format --write .",
"lint:errors": "bun biome check --diagnostic-level error --unsafe .",
"check": "if [ \"$CI\" = \"true\" ]; then bun run lint && bun run tsc; else bun run lint:fix && bun run tsc; fi",
"release": "bumpp --commit --push --tag",
"test": "bun test",
"test:coverage": "bun test --coverage",
"test:watch": "bun test --watch",
"type-check": "tsc --noEmit"
},
"simple-git-hooks": {
"pre-commit": "bun check && git add -u"
},
"devDependencies": {
"@biomejs/biome": "^2.4.10",
"@types/bun": "^1.3.11",
"@types/micromatch": "^4.0.10",
"bumpp": "^11.0.1",
"bunup": "^0.16.31",
"simple-git-hooks": "^2.13.1",
"typescript": "^6.0.2"
},
"peerDependencies": {
"typescript": ">=4.5.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./package.json": "./package.json"
},
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"dependencies": {
"@clack/prompts": "^1.2.0",
"@drizzle-team/brocli": "^0.11.0",
"@inquirer/search": "^4.1.6",
"c12": "^4.0.0-beta.4",
"micromatch": "^4.0.8",
"simple-git": "^3.33.0",
"zod": "^4.3.6"
}
}