@rafaeelricco/commit-tools 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,52 @@
1
+ {
2
+ "name": "@rafaeelricco/commit-tools",
3
+ "version": "0.1.0",
4
+ "module": "index.ts",
5
+ "type": "module",
6
+ "bin": {
7
+ "commit-tools": "./dist/index.js"
8
+ },
9
+ "scripts": {
10
+ "start": "bun index.ts",
11
+ "setup": "bun run start setup",
12
+ "doctor": "bun run start doctor",
13
+ "test": "bun test",
14
+ "compile": "bun run build",
15
+ "build": "bun build ./index.ts --outdir ./dist --target bun --minify --sourcemap",
16
+ "install:global": "bun link",
17
+ "format": "npx prettier . --write",
18
+ "typecheck": "tsc --noEmit",
19
+ "prepublishOnly": "bun run build"
20
+ },
21
+ "publishConfig": {
22
+ "access": "public"
23
+ },
24
+ "files": [
25
+ "dist"
26
+ ],
27
+ "devDependencies": {
28
+ "@types/bun": "latest",
29
+ "@types/express": "^5.0.6",
30
+ "@types/ink-text-input": "^2.0.5",
31
+ "@types/luxon": "^3.7.1",
32
+ "@types/react": "^19.2.14",
33
+ "prettier": "^3.8.1",
34
+ "prettier-plugin-tailwindcss": "^0.7.2",
35
+ "react-devtools-core": "^7.0.1"
36
+ },
37
+ "peerDependencies": {
38
+ "typescript": "^5"
39
+ },
40
+ "dependencies": {
41
+ "@clack/prompts": "^1.0.1",
42
+ "@google/generative-ai": "^0.24.1",
43
+ "cli-table3": "^0.6.5",
44
+ "fluture": "^14.0.0",
45
+ "google-auth-library": "^10.5.0",
46
+ "ink": "^6.8.0",
47
+ "luxon": "^3.7.2",
48
+ "open": "^11.0.0",
49
+ "picocolors": "^1.1.1",
50
+ "react": "^19.2.4"
51
+ }
52
+ }