-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.63 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.63 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
{
"name": "code-context-llm",
"version": "1.0.0",
"description": "Generates a Markdown representation of a project's file structure for LLM context.",
"type": "module",
"main": "src/index.js",
"bin": {
"code-context-llm": "./src/index.js"
},
"scripts": {
"lint": "eslint . --ext .js",
"lint:fix": "eslint . --ext .js --fix",
"format": "prettier --write '**/*.{js,json,md}'",
"format:check": "prettier --check '**/*.{js,json,md}'",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui"
},
"keywords": [
"llm",
"code",
"context",
"markdown",
"generator",
"prompt engineering",
"ai",
"machine learning",
"code summarization"
],
"repository": {
"type": "git",
"url": "https://github.com/nt9142/code-context-llm.git"
},
"author": "Nik Barabanov <nt9142@gmail.com>",
"license": "MIT",
"dependencies": {
"commander": "^12.1.0",
"ignore": "^6.0.2",
"ink": "^6.1.0",
"isbinaryfile": "^5.0.4",
"minimatch": "^10.0.1",
"react": "^19.1.1"
},
"devDependencies": {
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=18.0.0"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
}
}