@hyperline/cli 0.1.0-build.1.ec7ea00

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+ process.env.NODE_ENV ??= "local";
3
+ await import("./hyperline-main.js");
package/package.json ADDED
@@ -0,0 +1,45 @@
1
+ {
2
+ "name": "@hyperline/cli",
3
+ "version": "0.1.0-build.1.ec7ea00",
4
+ "description": "Agent-first CLI for Hyperline API",
5
+ "type": "module",
6
+ "main": "./dist/index.js",
7
+ "bin": {
8
+ "hyperline": "./dist/bin/hyperline.js"
9
+ },
10
+ "files": [
11
+ "dist"
12
+ ],
13
+ "scripts": {
14
+ "clear": "rm -rf ./.vitest-cache ./build ./dist ./tsconfig.tsbuildinfo",
15
+ "build": "tsc -b",
16
+ "bundle": "node scripts/bundle.js",
17
+ "lint:check": "biome check",
18
+ "lint:check:ci": "biome ci",
19
+ "lint": "biome check --write",
20
+ "test": "TZ=UTC vitest run --project unit --passWithNoTests",
21
+ "typecheck": "tsc -b --emitDeclarationOnly"
22
+ },
23
+ "dependencies": {
24
+ "axios": "1.13.2",
25
+ "axios-retry": "4.5.0",
26
+ "commander": "13.1.0",
27
+ "dotenv": "16.3.1"
28
+ },
29
+ "devDependencies": {
30
+ "@biomejs/biome": "2.3.8",
31
+ "@hyperline/ts-config": "workspace:*",
32
+ "@hyperline/vitest-config": "workspace:*",
33
+ "@types/node": "24.10.1",
34
+ "esbuild": "0.25.4",
35
+ "typescript": "5.9.3",
36
+ "vitest": "4.0.6"
37
+ },
38
+ "publishConfig": {
39
+ "access": "public",
40
+ "registry": "https://registry.npmjs.org"
41
+ },
42
+ "volta": {
43
+ "extends": "../../package.json"
44
+ }
45
+ }