-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.4 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.4 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
{
"name": "@ellipsis/cli",
"version": "2.30.0",
"description": "Ellipsis agent CLI: drive the Ellipsis cloud from your terminal",
"license": "MIT",
"type": "module",
"packageManager": "bun@1.3.14",
"//": "Not an npm package. The CLI ships only as a Bun-compiled single binary via the Homebrew tap (see .github/workflows/release.yml). `private` blocks accidental `npm publish`; there is deliberately no `bin` so `npm i -g .` can't install a stale global that shadows the brew binary.",
"private": true,
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "tsx src/cli.tsx",
"build": "tsup",
"check:versions": "bun scripts/check-versions.mjs",
"typecheck": "tsc --noEmit",
"compile": "./scripts/compile.sh",
"start": "node dist/cli.js",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@ellipsis-dev/sdk": "0.30.0",
"chalk": "^5.6.2",
"cli-table3": "^0.6.5",
"commander": "^12.1.0",
"ink": "^7.1.1",
"marked": "^15.0.12",
"marked-terminal": "^7.3.0",
"react": "^19.2.0",
"strip-ansi": "^7.2.0",
"wrap-ansi": "^10.0.0",
"ws": "^8.18.0",
"yaml": "^2.9.0"
},
"devDependencies": {
"@types/node": "^22.5.0",
"@types/react": "^19.2.0",
"@types/ws": "^8.5.12",
"react-devtools-core": "^6.1.2",
"tsup": "^8.3.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0",
"vitest": "^2.1.0"
}
}