-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.35 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.35 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
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "jumbo-cli",
"version": "3.16.1",
"description": "Memory and Context Orchestration for Coding Agents",
"keywords": [
"cli",
"command-line",
"coding-agent-context",
"terminal",
"agent-context",
"ai-agent-context",
"llm-agent-context",
"coding-agent-memory",
"agent-memory",
"ai-agent-memory",
"llm-agent-memory",
"context-engineering",
"developer-tools"
],
"homepage": "https://jumbocontext.com",
"bugs": {
"url": "https://github.com/jumbocontext/jumbo.cli/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jumbocontext/jumbo.cli.git"
},
"type": "module",
"license": "AGPL-3.0",
"author": "Josh Wheelock <hello@jumbocontext.com> (https://jumbocontext.com)",
"main": "dist/index.js",
"bin": {
"jumbo": "dist/cli.js"
},
"files": [
"dist",
"assets"
],
"scripts": {
"generate:commands": "node build/generate-command-registry.mjs",
"prebuild": "npm run generate:commands",
"build": "tsc && npm run copy:migrations && npm run inject:telemetry",
"inject:telemetry": "node build/inject-telemetry-config.mjs",
"copy:migrations": "node build/copy-migrations.mjs",
"dev": "tsc --watch",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --config jest.config.cjs",
"lint": "eslint --config eslint.config.mjs \"src/**/*.ts\"",
"format": "prettier --write \"src/**/*.ts\"",
"prepublishOnly": "npm run build",
"clean:testdata": "rm -rf .jumbo test-integration-*"
},
"dependencies": {
"@inquirer/prompts": "^8.4.2",
"better-sqlite3": "^12.4.1",
"chalk": "^5.6.2",
"commander": "^14.0.3",
"fs-extra": "^11.3.2",
"ink": "^7.0.2",
"inquirer": "^13.4.2",
"jsonc-parser": "^3.3.1",
"posthog-node": "^5.21.2",
"react": "^19.2.6",
"strip-ansi": "^7.2.0",
"yaml": "^2.8.1"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/better-sqlite3": "^7.6.13",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^30.0.0",
"@types/node": "^20.19.19",
"@types/react": "^19.2.14",
"eslint": "^9.0.0",
"fast-glob": "^3.3.3",
"ink-testing-library": "^4.0.0",
"jest": "^30.3.0",
"prettier": "^3.1.1",
"ts-jest": "^29.4.9",
"typescript": "^6.0.3",
"typescript-eslint": "^8.0.0"
},
"engines": {
"node": ">=18.18.0"
}
}