-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.3 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.3 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
93
94
95
{
"name": "@effect-x/ai-commit",
"version": "0.0.2",
"description": "AI commit cli with git and jj support.",
"keywords": [
"cli",
"commit",
"effect",
"git",
"jj",
"jujutsu",
"llm"
],
"homepage": "https://github.com/effect-anything/ai-commit",
"bugs": {
"url": "https://github.com/effect-anything/ai-commit/issues"
},
"license": "MIT",
"contributors": [
"xesrevinu"
],
"repository": {
"type": "git",
"url": "git+https://github.com/effect-anything/ai-commit.git"
},
"bin": {
"ai-commit": "dist/cli.js"
},
"files": [
"dist",
"schemas",
"src",
"README.md",
"LICENSE"
],
"type": "module",
"sideEffects": false,
"exports": {
".": "./dist/cli.js",
"./*": "./*"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"prepare": "lefthook install && effect-tsgo patch",
"build": "tsdown",
"dev": "tsdown --watch",
"lint": "oxlint .",
"format": "oxfmt .",
"format:check": "oxfmt --check .",
"typecheck": "tsgo --noEmit",
"test": "vitest run",
"generate:schemas": "bun run scripts/generate-config-schemas.ts",
"check": "bun run lint && bun run format:check && bun run typecheck && bun run test && bun run build",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "changeset publish --provenance",
"prepack": "bun run build && bun run generate:schemas"
},
"devDependencies": {
"@changesets/cli": "^2.29.7",
"@effect/ai-openai": "4.0.0-beta.41",
"@effect/platform-node": "4.0.0-beta.41",
"@effect/tsgo": "0.0.20",
"@effect/vitest": "4.0.0-beta.41",
"@types/node": "^25.5.0",
"@typescript/native-preview": "7.0.0-dev.20260327.2",
"effect": "4.0.0-beta.41",
"lefthook": "^2.1.4",
"oxfmt": "^0.42.0",
"oxlint": "^1.57.0",
"tsdown": "^0.21.6",
"vitest": "^4.1.2"
},
"engines": {
"bun": ">=1.3.10",
"node": ">=24"
},
"inlinedDependencies": {
"@effect/ai-openai": "4.0.0-beta.41",
"@effect/platform-node": "4.0.0-beta.41",
"@effect/platform-node-shared": "4.0.0-beta.41",
"effect": "4.0.0-beta.41",
"ini": "6.0.0",
"toml": "3.0.0",
"yaml": "2.8.3"
},
"knip": {
"ignoreDependencies": [
"@effect/language-service"
]
}
}