Skip to content

Commit 73777df

Browse files
committed
chore: enhance package.json metadata and update gitignore
Add comprehensive package.json metadata: - repository, bugs, and homepage URLs - keywords for npm discoverability (opencode, autonomous, ai, etc.) - author and license fields Update .gitignore to exclude metrics.json file from version control, as it contains runtime statistics that should not be committed. Signed-off-by: leocavalcante <leo@cavalcante.dev>
1 parent f164eb1 commit 73777df

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# OpenCoder state and logs (config.json is user-managed)
22
.opencode/opencoder/state.json
33
.opencode/opencoder/current_plan.md
4+
.opencode/opencoder/metrics.json
45
.opencode/opencoder/logs/
56
.opencode/opencoder/history/
67
.opencode/opencoder/alerts.log

package.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,26 @@
77
"bin": {
88
"opencoder": "src/index.ts"
99
},
10+
"repository": {
11+
"type": "git",
12+
"url": "https://github.com/opencodeco/opencoder.git"
13+
},
14+
"bugs": {
15+
"url": "https://github.com/opencodeco/opencoder/issues"
16+
},
17+
"homepage": "https://github.com/opencodeco/opencoder#readme",
18+
"keywords": [
19+
"opencode",
20+
"autonomous",
21+
"development",
22+
"ai",
23+
"coding-agent",
24+
"cli",
25+
"automation",
26+
"continuous-development"
27+
],
28+
"author": "OpenCode Community",
29+
"license": "MIT",
1030
"scripts": {
1131
"start": "bun run src/index.ts",
1232
"dev": "bun run src/index.ts",

0 commit comments

Comments
 (0)