-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.76 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@kodus/cli",
"version": "0.4.13",
"description": "Kodus CLI - AI-powered code review from your terminal",
"type": "module",
"bin": {
"kodus": "./dist/index.js"
},
"main": "./dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/kodustech/cli.git"
},
"homepage": "https://kodus.io",
"bugs": {
"url": "https://github.com/kodustech/cli/issues"
},
"scripts": {
"build": "yarn clean && tsc && chmod +x dist/index.js",
"dev": "tsc --watch",
"start": "node dist/index.js",
"start:local": "KODUS_API_URL=http://localhost:3001 node dist/index.js",
"start:qa": "KODUS_API_URL=https://qa.api.kodus.io node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"test:integration": "yarn build && vitest run --config vitest.integration.config.ts",
"test:installer": "sh tests/install_business_rules_validation_test.sh",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"check": "yarn format:check && yarn lint",
"skills:sync": "node scripts/sync-skills-aliases.mjs",
"skills:validate": "node scripts/validate-skills.mjs",
"skills:prompt": "node scripts/skills-to-prompt.mjs --format=xml",
"skills:prompt:json": "node scripts/skills-to-prompt.mjs --format=json",
"clean": "rm -rf dist",
"prepublishOnly": "yarn build"
},
"keywords": [
"kodus",
"code-review",
"ai",
"cli",
"git"
],
"author": "Kodus",
"license": "MIT",
"dependencies": {
"@inquirer/prompts": "^8.3.2",
"boxen": "^8.0.1",
"chalk": "^5.6.2",
"clipboardy": "^5.3.1",
"commander": "^14.0.3",
"execa": "^9.6.1",
"figlet": "^1.11.0",
"gradient-string": "^3.0.0",
"latest-version": "^9.0.0",
"node-machine-id": "^1.1.12",
"open": "^11.0.0",
"ora": "^9.3.0",
"simple-git": "^3.33.0",
"update-notifier": "^7.3.1",
"yaml": "^2.8.2"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/figlet": "^1.7.0",
"@types/gradient-string": "^1.1.6",
"@types/node": "^25.5.0",
"@types/update-notifier": "^6.0.8",
"@typescript-eslint/eslint-plugin": "^8.57.1",
"@typescript-eslint/parser": "^8.57.1",
"eslint": "^10.0.3",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
},
"engines": {
"node": ">=20.0.0"
},
"packageManager": "yarn@1.22.22",
"files": [
"dist",
"skills"
]
}