-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.13 KB
/
package.json
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
{
"name": "llm-context",
"type": "module",
"version": "1.2.3",
"packageManager": "[email protected]+sha512.76e2379760a4328ec4415815bcd6628dee727af3779aaa4c914e3944156c4299921a89f976381ee107d41f12cfa4b66681ca9c718f0668fa0831ed4c6d8ba56c",
"description": "A CLI tool to build context files to attach to Large Language Models (LLMs).",
"author": {
"name": "valerio coltre",
"email": "[email protected]"
},
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "https://github.com/colthreepv/llm-context"
},
"keywords": [
"cli",
"llm",
"context",
"ai",
"language-model",
"prompt-engineering",
"nlp"
],
"main": "dist/index.js",
"bin": {
"llm-context": "./dist/index.js"
},
"scripts": {
"clean": "rm -rf dist",
"build": "node build.js",
"test": "vitest",
"lint": "eslint src/**/*.ts",
"start": "tsx src/index.ts"
},
"devDependencies": {
"@antfu/eslint-config": "^3.12.0",
"@total-typescript/tsconfig": "^1.0.4",
"@types/node": "^22.10.2",
"eslint": "^9.17.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
}
}