chore(release): bump version to 1.0.0 and add build script

This commit is contained in:
2026-04-06 00:53:50 +02:00
parent 0835211a71
commit a0f6277da9
3 changed files with 71 additions and 68 deletions

BIN
ai-commit-ext-1.0.0.vsix Normal file

Binary file not shown.

8
package-lock.json generated
View File

@@ -1,18 +1,20 @@
{
"name": "ai-commit-ext",
"version": "1.0.0",
"version": "0.0.1",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "ai-commit-ext",
"version": "1.0.0",
"license": "ISC",
"version": "0.0.1",
"devDependencies": {
"@types/node": "^25.5.2",
"@types/vscode": "^1.110.0",
"typescript": "^6.0.2",
"vscode": "^1.1.37"
},
"engines": {
"vscode": "^1.110.0"
}
},
"node_modules/@tootallnate/once": {

View File

@@ -1,70 +1,71 @@
{
"name": "ai-commit-ext",
"displayName": "AI Commit Ext",
"description": "Generate commit messages using OpenCode AI",
"version": "0.0.1",
"publisher": "local",
"engines": {
"vscode": "^1.71.0"
},
"categories": [
"Other"
],
"main": "./out/extension",
"activationEvents": [
"onCommand:aiCommitExt.generate"
],
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"test": "echo \"No tests yet\""
},
"devDependencies": {
"@types/node": "^25.5.2",
"@types/vscode": "^1.110.0",
"typescript": "^6.0.2",
"vscode": "^1.1.37"
},
"contributes": {
"configuration": {
"title": "AI Commit Ext",
"properties": {
"aiCommitExt.model": {
"type": "string",
"default": "",
"description": "OpenCode model to use (e.g. anthropic/claude-3-5-sonnet-20241022). Empty = default model."
},
"aiCommitExt.includeUnstaged": {
"type": "boolean",
"default": false,
"description": "Use unstaged changes if no staged changes exist"
},
"aiCommitExt.showNotification": {
"type": "boolean",
"default": true,
"description": "Show notification when commit message is generated"
}
}
"name": "ai-commit-ext",
"displayName": "AI Commit Ext",
"description": "Generate commit messages using OpenCode AI",
"version": "1.0.0",
"publisher": "local",
"engines": {
"vscode": "^1.110.0"
},
"commands": [
{
"command": "aiCommitExt.generate",
"title": "Generate Commit Message",
"icon": "$(sparkle)",
"category": "AI Commit"
}
"categories": [
"Other"
],
"menus": {
"scm/title": [
{
"when": "scmProvider == git",
"command": "aiCommitExt.generate",
"group": "navigation",
"icon": "$(sparkle)",
"alt": "aiCommitExt.generate"
"main": "./out/extension",
"activationEvents": [
"onCommand:aiCommitExt.generate"
],
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"test": "echo \"No tests yet\"",
"build": "npx @vscode/vsce package --allow-missing-repository --skip-license"
},
"devDependencies": {
"@types/node": "^25.5.2",
"@types/vscode": "^1.110.0",
"typescript": "^6.0.2",
"vscode": "^1.1.37"
},
"contributes": {
"configuration": {
"title": "AI Commit Ext",
"properties": {
"aiCommitExt.model": {
"type": "string",
"default": "",
"description": "OpenCode model to use (e.g. anthropic/claude-3-5-sonnet-20241022). Empty = default model."
},
"aiCommitExt.includeUnstaged": {
"type": "boolean",
"default": false,
"description": "Use unstaged changes if no staged changes exist"
},
"aiCommitExt.showNotification": {
"type": "boolean",
"default": true,
"description": "Show notification when commit message is generated"
}
}
},
"commands": [
{
"command": "aiCommitExt.generate",
"title": "Generate Commit Message",
"icon": "$(sparkle)",
"category": "AI Commit"
}
],
"menus": {
"scm/title": [
{
"when": "scmProvider == git",
"command": "aiCommitExt.generate",
"group": "navigation",
"icon": "$(sparkle)",
"alt": "aiCommitExt.generate"
}
]
}
]
}
}
}