kodu 1.1.15 → 1.1.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/package.json +86 -0
- package/dist/src/main.js +7 -1
- package/dist/src/main.js.map +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/main.ts +4 -1
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "kodu",
|
|
3
|
+
"version": "1.1.16",
|
|
4
|
+
"description": "High-performance CLI to prepare codebase for LLMs, automate reviews, and draft commits.",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "git+https://github.com/uxname/kodu.git"
|
|
8
|
+
},
|
|
9
|
+
"bugs": {
|
|
10
|
+
"url": "https://github.com/uxname/kodu/issues"
|
|
11
|
+
},
|
|
12
|
+
"homepage": "https://github.com/uxname/kodu#readme",
|
|
13
|
+
"keywords": [
|
|
14
|
+
"cli",
|
|
15
|
+
"ai",
|
|
16
|
+
"llm",
|
|
17
|
+
"developer-tools",
|
|
18
|
+
"productivity",
|
|
19
|
+
"typescript",
|
|
20
|
+
"openai",
|
|
21
|
+
"automation",
|
|
22
|
+
"code-review",
|
|
23
|
+
"context-window",
|
|
24
|
+
"git-tools"
|
|
25
|
+
],
|
|
26
|
+
"private": false,
|
|
27
|
+
"license": "MIT",
|
|
28
|
+
"bin": {
|
|
29
|
+
"kodu": "dist/src/main.js"
|
|
30
|
+
},
|
|
31
|
+
"scripts": {
|
|
32
|
+
"________________ BUILD AND RUN ________________": "",
|
|
33
|
+
"build": "nest build && chmod +x dist/src/main.js",
|
|
34
|
+
"generate:schema": "ts-node scripts/generate-json-schema.ts",
|
|
35
|
+
"postbuild": "npm run generate:schema",
|
|
36
|
+
"start:prod": "node dist/main.js",
|
|
37
|
+
"new:command": "nest g -c nest-commander-schematics command",
|
|
38
|
+
"new:question": "nest g -c nest-commander-schematics question",
|
|
39
|
+
"________________ FORMAT AND LINT ________________": "",
|
|
40
|
+
"lint": "biome check",
|
|
41
|
+
"lint:fix": "biome check --write",
|
|
42
|
+
"lint:fix:unsafe": "biome check --write --unsafe",
|
|
43
|
+
"ts:check": "tsc --noEmit",
|
|
44
|
+
"knip": "knip --production",
|
|
45
|
+
"check": "run-p ts:check lint:fix knip",
|
|
46
|
+
"________________ OTHER ________________": "",
|
|
47
|
+
"prepare": "lefthook install"
|
|
48
|
+
},
|
|
49
|
+
"dependencies": {
|
|
50
|
+
"@inquirer/confirm": "^6.0.4",
|
|
51
|
+
"@inquirer/input": "^5.0.4",
|
|
52
|
+
"@inquirer/select": "^5.0.4",
|
|
53
|
+
"@mastra/core": "^1.0.4",
|
|
54
|
+
"@nestjs/common": "^11.0.1",
|
|
55
|
+
"@nestjs/core": "^11.0.1",
|
|
56
|
+
"clipboardy": "^5.0.2",
|
|
57
|
+
"execa": "^9.6.1",
|
|
58
|
+
"ignore": "^7.0.5",
|
|
59
|
+
"js-tiktoken": "^1.0.21",
|
|
60
|
+
"lilconfig": "^3.1.3",
|
|
61
|
+
"nest-commander": "^3.20.1",
|
|
62
|
+
"picocolors": "^1.1.1",
|
|
63
|
+
"reflect-metadata": "^0.2.2",
|
|
64
|
+
"rxjs": "^7.8.1",
|
|
65
|
+
"source-map-support": "^0.5.21",
|
|
66
|
+
"tinyglobby": "^0.2.15",
|
|
67
|
+
"ts-morph": "^24.0.0",
|
|
68
|
+
"yocto-spinner": "^1.0.0",
|
|
69
|
+
"zod": "^4.3.6"
|
|
70
|
+
},
|
|
71
|
+
"devDependencies": {
|
|
72
|
+
"@biomejs/biome": "^2.3.12",
|
|
73
|
+
"@nestjs/cli": "^11.0.0",
|
|
74
|
+
"@nestjs/schematics": "^11.0.0",
|
|
75
|
+
"@nestjs/testing": "^11.0.1",
|
|
76
|
+
"@types/node": "^22.10.7",
|
|
77
|
+
"knip": "^5.82.1",
|
|
78
|
+
"lefthook": "^2.0.15",
|
|
79
|
+
"nest-commander-schematics": "^3.2.0",
|
|
80
|
+
"npm-run-all": "^4.1.5",
|
|
81
|
+
"ts-loader": "^9.5.2",
|
|
82
|
+
"ts-node": "^10.9.2",
|
|
83
|
+
"tsconfig-paths": "^4.2.0",
|
|
84
|
+
"typescript": "^5.7.3"
|
|
85
|
+
}
|
|
86
|
+
}
|
package/dist/src/main.js
CHANGED
|
@@ -1,10 +1,16 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
"use strict";
|
|
3
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
4
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
5
|
+
};
|
|
3
6
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
7
|
const nest_commander_1 = require("nest-commander");
|
|
8
|
+
const package_json_1 = __importDefault(require("../package.json"));
|
|
5
9
|
const app_module_1 = require("./app.module");
|
|
6
10
|
async function bootstrap() {
|
|
7
|
-
await nest_commander_1.CommandFactory.run(app_module_1.AppModule
|
|
11
|
+
await nest_commander_1.CommandFactory.run(app_module_1.AppModule, {
|
|
12
|
+
version: package_json_1.default.version,
|
|
13
|
+
});
|
|
8
14
|
}
|
|
9
15
|
bootstrap();
|
|
10
16
|
//# sourceMappingURL=main.js.map
|
package/dist/src/main.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"main.js","sourceRoot":"","sources":["../../src/main.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"main.js","sourceRoot":"","sources":["../../src/main.ts"],"names":[],"mappings":";;;;;;AAEA,mDAAgD;AAChD,mEAA0C;AAC1C,6CAAyC;AAEzC,KAAK,UAAU,SAAS;IACtB,MAAM,+BAAc,CAAC,GAAG,CAAC,sBAAS,EAAE;QAClC,OAAO,EAAE,sBAAW,CAAC,OAAO;KAC7B,CAAC,CAAC;AACL,CAAC;AACD,SAAS,EAAE,CAAC"}
|