-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.69 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.69 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
{
"name": "contextr",
"version": "1.1.0",
"description": "A powerful tool for collecting and packaging code files for LLM context",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts"
}
},
"bin": {
"contextr": "./dist/cjs/cli/bin.js"
},
"scripts": {
"build": "npm run build:cjs && npm run build:esm || npm run build:simple",
"build:cjs": "tsc -p tsconfig.build.json",
"build:strict": "tsc -p tsconfig.json",
"build:esm": "tsc -p tsconfig.esm.json",
"build:simple": "node build-simple.js",
"test": "jest",
"test:features": "node scripts/test-features.js",
"prepublishOnly": "npm run build",
"studio": "node dist/cjs/cli/bin.js studio"
},
"keywords": [
"llm",
"context",
"code",
"files",
"ai",
"language-model",
"typescript"
],
"author": "7SigmaLLC",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/7SigmaLLC/contextr.git"
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^11.0.0",
"express": "^4.18.2",
"fast-glob": "^3.3.3",
"fs-extra": "^11.1.1",
"open": "^9.1.0",
"tsx": "^4.19.2"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.30",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.2"
},
"engines": {
"node": ">=14.0.0"
},
"files": [
"dist",
"src",
"README.md",
"LICENSE",
"RELEASE_NOTES.md"
]
}