-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 916 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 916 Bytes
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
{
"name": "@ellipsis/ellipsis-cli",
"version": "0.1.0",
"description": "Ellipsis installer CLI: deploy the Ellipsis platform into your own AWS account",
"license": "MIT",
"type": "module",
"packageManager": "bun@1.3.14",
"//": "Not an npm package. Ships only as a Bun-compiled single binary via the ellipsis-dev/homebrew-cli tap (same model as ellipsis-dev/cli). `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.ts",
"typecheck": "tsc --noEmit",
"compile": "./scripts/compile.sh",
"test": "vitest run"
},
"dependencies": {
"commander": "^12.1.0"
},
"devDependencies": {
"@types/node": "^22.5.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0",
"vitest": "^2.1.0"
}
}