-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 2.74 KB
/
Copy pathpackage.json
File metadata and controls
113 lines (113 loc) · 2.74 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "orcommit",
"version": "1.2.24",
"description": "AI-powered commit message generator - Automated git commits using OpenAI, Claude, and OpenRouter APIs with intelligent diff processing, custom prompts, and interactive regeneration",
"keywords": [
"git",
"commit",
"ai",
"openrouter",
"openai",
"claude",
"anthropic",
"cli",
"typescript",
"automation",
"git-automation",
"commit-message",
"ai-commit",
"conventional-commits",
"gpt",
"gpt-4",
"developer-tools",
"productivity",
"git-hooks",
"ai-assistant",
"code-assistant",
"ollama",
"local-ai",
"multi-provider",
"interactive-cli"
],
"main": "dist/index.js",
"bin": {
"orc": "dist/cli.js"
},
"type": "module",
"scripts": {
"build": "tsc && chmod +x dist/cli.js",
"dev": "tsx src/cli.ts",
"test": "jest",
"test:unit": "jest tests/unit",
"test:integration": "jest tests/integration",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --ci --coverage --watchAll=false",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write src/**/*.ts",
"format:check": "prettier --check src/**/*.ts",
"prepublishOnly": "npm run build",
"clean": "rimraf dist",
"commit": "git add . && orc commit"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE",
"preview.png"
],
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/markolofsen/openrouter-commit.git"
},
"homepage": "https://reforms.ai",
"bugs": {
"url": "https://github.com/markolofsen/openrouter-commit/issues",
"email": "contact@reforms.ai"
},
"author": {
"name": "Mark Olofsen",
"email": "contact@reforms.ai",
"url": "https://reforms.ai"
},
"contributors": [
{
"name": "Reforms.ai Team",
"url": "https://reforms.ai"
}
],
"funding": {
"type": "individual",
"url": "https://reforms.ai"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.8",
"@types/node": "^20.9.0",
"@types/update-notifier": "^6.0.8",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"eslint": "^8.54.0",
"jest": "^29.7.0",
"prettier": "^3.1.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"tsx": "^4.6.0",
"typescript": "^5.3.2"
},
"dependencies": {
"@clack/prompts": "^0.11.0",
"axios": "^1.6.2",
"axios-retry": "^4.0.0",
"chalk": "^5.3.0",
"commander": "^11.1.0",
"gitleaks-secret-scanner": "^1.2.2",
"p-queue": "^7.4.1",
"tiktoken": "^1.0.10",
"update-notifier": "^7.0.0"
}
}