-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.61 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
{
"name": "@rafaeelricco/commit-tools",
"version": "0.3.0",
"type": "module",
"packageManager": "pnpm@10.33.0",
"bin": {
"commit": "./dist/index.js"
},
"scripts": {
"start": "tsx --env-file=.env index.ts",
"setup": "pnpm run start -- setup",
"doctor": "pnpm run start -- doctor",
"build": "tsup",
"install:global": "npm link",
"format": "npx prettier . --write",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:ci": "eslint .",
"test": "vitest run",
"test:watch": "vitest"
},
"repository": {
"type": "git",
"url": "https://github.com/rafaeelricco/commit-tools"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"devDependencies": {
"@types/express": "^5.0.6",
"@types/ink-text-input": "^2.0.5",
"@types/luxon": "^3.7.1",
"@types/node": "^22",
"@types/react": "^19.2.14",
"@vitest/coverage-v8": "^4.1.6",
"eslint": "^9.39.4",
"eslint-plugin-sonarjs": "^4.0.3",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"react-devtools-core": "^7.0.1",
"tsup": "^8",
"tsx": "^4",
"typescript-eslint": "^8.59.0",
"vitest": "^4.1.6"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@anthropic-ai/sdk": "0.90.0",
"@clack/prompts": "^1.0.1",
"@google/genai": "1.50.1",
"chalk": "^5.6.2",
"cli-table3": "^0.6.5",
"fluture": "^14.0.0",
"google-auth-library": "^10.5.0",
"ink": "^6.8.0",
"luxon": "^3.7.2",
"open": "^11.0.0",
"openai": "6.34.0",
"picocolors": "^1.1.1",
"react": "^19.2.4"
}
}