mirror of
https://github.com/evosoftie/AILint.git
synced 2026-08-06 21:06:51 +01:00
67 lines
1.6 KiB
JSON
67 lines
1.6 KiB
JSON
{
|
|
"name": "ailint",
|
|
"displayName": "AILint",
|
|
"description": "Code provenance tracking for AI-assisted development",
|
|
"version": "0.1.0",
|
|
"engines": {
|
|
"vscode": "^1.80.0"
|
|
},
|
|
"categories": ["Other"],
|
|
"activationEvents": [
|
|
"onStartupFinished"
|
|
],
|
|
"main": "./out/extension.js",
|
|
"contributes": {
|
|
"commands": [
|
|
{
|
|
"command": "ailint.analyzeFile",
|
|
"title": "AILint: Analyze Current File"
|
|
},
|
|
{
|
|
"command": "ailint.showDashboard",
|
|
"title": "AILint: Show Dashboard"
|
|
},
|
|
{
|
|
"command": "ailint.installGitHook",
|
|
"title": "AILint: Install Git Hook"
|
|
}
|
|
],
|
|
"configuration": {
|
|
"title": "AILint",
|
|
"properties": {
|
|
"ailint.enabled": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"description": "Enable/disable AILint analysis"
|
|
},
|
|
"ailint.threshold": {
|
|
"type": "number",
|
|
"default": 0.7,
|
|
"minimum": 0,
|
|
"maximum": 1,
|
|
"description": "Confidence threshold for warnings"
|
|
},
|
|
"ailint.analyzeOnSave": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"description": "Analyze file on save"
|
|
},
|
|
"ailint.showInStatusBar": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"description": "Show AI likelihood in status bar"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"scripts": {
|
|
"vscode:prepublish": "npm run compile",
|
|
"compile": "tsc -p ./",
|
|
"watch": "tsc -watch -p ./"
|
|
},
|
|
"devDependencies": {
|
|
"@types/vscode": "^1.80.0",
|
|
"@types/node": "^16.x",
|
|
"typescript": "^5.0.0"
|
|
}
|
|
}
|