-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 991 Bytes
/
package.json
File metadata and controls
48 lines (48 loc) · 991 Bytes
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
{
"name": "ai-context",
"version": "1.6.2",
"description": "CLI tool to generate code context files",
"main": "bin/cx.js",
"type": "module",
"bin": {
"cx": "./bin/cx.js"
},
"scripts": {
"test": "node tests/test-commands.js"
},
"keywords": [
"cli",
"context",
"code",
"development",
"ai",
"documentation",
"codebase"
],
"author": {
"name": "Christian Sanz",
"email": "chrissanz@gmail.com",
"url": "https://github.com/csanz"
},
"repository": {
"type": "git",
"url": "git+https://github.com/csanz/aicontext.git"
},
"bugs": {
"url": "https://github.com/csanz/aictx/issues"
},
"homepage": "https://github.com/csanz/aictx#readme",
"license": "MIT",
"dependencies": {
"chalk": "^5.3.0",
"clipboardy": "^4.0.0",
"columnify": "^1.6.0",
"directory-tree": "^3.5.2",
"minimatch": "^9.0.5",
"ora": "^8.0.1",
"yargs": "^17.7.2"
},
"engines": {
"node": ">=18.0.0"
}
}