Initial commit: ai-code-trust CLI tool v1.0.0

This commit is contained in:
BunBun Labs
2026-06-18 00:23:00 +00:00
commit 75e045cd04
9 changed files with 1076 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
{
"name": "ai-code-trust",
"version": "1.0.0",
"description": "CLI tool to audit and assess trust in AI-generated code",
"main": "dist/index.js",
"bin": {
"ai-code-trust": "dist/index.js"
},
"scripts": {
"build": "tsc",
"test": "node --test dist/**/*.test.js",
"lint": "tsc --noEmit"
},
"keywords": [
"ai",
"code",
"trust",
"audit",
"security"
],
"author": "BunBun Labs",
"license": "MIT",
"devDependencies": {
"typescript": "^5.4.0"
},
"dependencies": {
"@types/node": "^25.9.3"
}
}