@johnowennixon/diffdash 1.0.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.
Files changed (3) hide show
  1. package/README.md +174 -0
  2. package/out/diffdash.cjs +33014 -0
  3. package/package.json +75 -0
package/package.json ADDED
@@ -0,0 +1,75 @@
1
+ {
2
+ "name": "@johnowennixon/diffdash",
3
+ "version": "1.0.0",
4
+ "description": "A command-line tool to generate Git commit messages using AI",
5
+ "license": "0BSD",
6
+ "author": "John Owen Nixon",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/johnowennixon/diffdash.git"
10
+ },
11
+ "engines": {
12
+ "node": ">=20"
13
+ },
14
+ "type": "module",
15
+ "files": [
16
+ "out/diffdash.cjs"
17
+ ],
18
+ "bin": {
19
+ "diffdash": "out/diffdash.cjs"
20
+ },
21
+ "dependencies": {
22
+ "@ai-sdk/anthropic": "1.2.12",
23
+ "@ai-sdk/deepseek": "0.2.14",
24
+ "@ai-sdk/google": "1.2.19",
25
+ "@ai-sdk/openai": "1.3.22",
26
+ "@openrouter/ai-sdk-provider": "0.7.1",
27
+ "@requesty/ai-sdk": "0.0.7",
28
+ "ai": "4.3.16",
29
+ "ansis": "4.1.0",
30
+ "argparse": "2.0.1",
31
+ "cli-table3": "0.6.5",
32
+ "simple-git": "3.28.0",
33
+ "tiktoken": "1.0.21",
34
+ "zod": "3.25.55"
35
+ },
36
+ "devDependencies": {
37
+ "@biomejs/biome": "1.9.4",
38
+ "@eslint/eslintrc": "3.3.1",
39
+ "@eslint/js": "9.28.0",
40
+ "@stylistic/eslint-plugin": "4.4.1",
41
+ "@types/argparse": "2.0.17",
42
+ "@types/node": "22.15.30",
43
+ "@typescript-eslint/eslint-plugin": "8.33.1",
44
+ "@typescript-eslint/parser": "8.33.1",
45
+ "esbuild": "0.25.5",
46
+ "eslint": "9.28.0",
47
+ "eslint-import-resolver-typescript": "4.4.3",
48
+ "eslint-plugin-import-x": "4.15.1",
49
+ "eslint-plugin-sonarjs": "3.0.2",
50
+ "eslint-plugin-unicorn": "59.0.1",
51
+ "globals": "16.2.0",
52
+ "knip": "5.60.2",
53
+ "markdownlint-cli2": "0.18.1",
54
+ "npm-run-all2": "8.0.4",
55
+ "oxlint": "0.17.0",
56
+ "rimraf": "6.0.1",
57
+ "typescript": "5.8.3",
58
+ "typescript-eslint": "8.33.1"
59
+ },
60
+ "scripts": {
61
+ "build": "echo 'Building with esbuild' && rimraf out && node esbuild.config.js",
62
+ "fix": "run-s -ls fix:biome fix:markdownlint",
63
+ "fix:biome": "echo 'Fixing with Biome' && biome check --write",
64
+ "fix:markdownlint": "echo 'Fixing with markdownlint' && markdownlint-cli2 '**/*.md' --fix",
65
+ "fix:oxlint": "echo 'Fixing with oxlint' && oxlint --fix",
66
+ "lint": "run-s -ls lint:biome lint:oxlint lint:tsc lint:knip lint:markdownlint",
67
+ "lint:biome": "echo 'Linting with Biome' && biome check",
68
+ "lint:eslint": "echo 'Linting with ESLint' && eslint",
69
+ "lint:knip": "echo 'Linting with Knip' && knip",
70
+ "lint:markdownlint": "echo 'Linting with markdownlint' && markdownlint-cli2 '**/*.md'",
71
+ "lint:oxlint": "echo 'Linting with oxlint' && oxlint",
72
+ "lint:tsc": "echo 'Linting with tsc' && tsc --noEmit --erasableSyntaxOnly --libReplacement false",
73
+ "test": "run-s -ls lint build"
74
+ }
75
+ }