-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.42 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
{
"name": "kontxt-cli",
"version": "0.1.2",
"description": "CLI for packaging codebases into AI-ready context files.",
"main": "dist/index.js",
"type": "module",
"private": false,
"license": "SEE LICENSE IN LICENSE",
"bin": {
"kontxt": "dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/knownIndie/kontxt-cli"
},
"bugs": {
"url": "https://github.com/knownIndie/kontxt-cli/issues"
},
"homepage": "https://github.com/knownIndie/kontxt-cli#readme",
"keywords": [
"cli",
"context",
"ai",
"llm",
"codebase",
"tokens"
],
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup",
"lint": "biome check src/",
"format": "biome format --write src/",
"test": "bun test tests/extended.foundation.test.ts tests/cli.extended.test.ts",
"test:all": "bun test",
"test:legacy:deprecated": "bun test tests/core.legacy.test.ts tests/cli.legacy.test.ts tests/faultfinding.rigorous.test.ts",
"prepublishOnly": "npm run build"
},
"files": [
"dist"
],
"devDependencies": {
"@biomejs/biome": "^2.3.15",
"@types/bun": "latest",
"@types/node": "^25.2.3",
"tsup": "^8.5.1"
},
"dependencies": {
"chalk": "^5.6.2",
"clipboardy": "^5.3.0",
"commander": "^14.0.3",
"globby": "^16.1.0",
"js-tiktoken": "^1.0.21",
"typescript": "^5.9.3"
}
}