-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·50 lines (50 loc) · 1.31 KB
/
package.json
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
{
"name": "openrouter-commit",
"version": "1.1.6",
"description": "AI-powered CLI tool for effortless, context-aware Git commit messages. Uses OpenRouter LLMs to generate concise, meaningful commits—automating your workflow with smart AI insights.",
"main": "index.js",
"bin": {
"openrouter-commit": "./src/index.js"
},
"type": "module",
"private": false,
"scripts": {
"start": "node index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "npm pack --dry-run",
"npm-publish": "npm publish --access public",
"commit": "npx openrouter-commit -run"
},
"keywords": [
"git",
"commit",
"ai",
"gpt",
"openrouter",
"cli",
"automation",
"git-commit"
],
"author": "Unrealos.com - AI, SaaS, PaaS solutions for business",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/markolofsen/openrouter-commit"
},
"bugs": {
"url": "https://github.com/markolofsen/openrouter-commit/issues"
},
"homepage": "https://github.com/markolofsen/openrouter-commit#readme",
"dependencies": {
"boxen": "^8.0.1",
"chalk": "^5.4.1",
"dotenv": "^16.4.7",
"figlet": "^1.8.0",
"node-fetch": "^3.3.2",
"prompts": "^2.4.2",
"semver": "^7.7.0"
},
"engines": {
"node": ">=16"
}
}