ever-terminal 1.0.0 → 1.0.1

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.
Files changed (2) hide show
  1. package/README.md +2 -26
  2. package/package.json +3 -11
package/README.md CHANGED
@@ -2,15 +2,13 @@
2
2
 
3
3
  `ever-terminal` is designed to be used with the Even App.
4
4
 
5
- > Building glasses-native apps instead of mirroring your laptop? See [@evenrealities/even_hub_sdk](https://www.npmjs.com/package/@evenrealities/even_hub_sdk).
6
-
7
5
  Supports macOS, Linux, Windows.
8
6
 
9
7
  ---
10
8
 
11
9
  ## Requirements
12
10
 
13
- - **Node.js 18+** — check with `node --version`. Install from [nodejs.org](https://nodejs.org), or `brew install node` (macOS), or your distro's package manager (Linux).
11
+ - **Node.js 22+** — check with `node --version`. Install from [nodejs.org](https://nodejs.org), or `brew install node` (macOS), or your distro's package manager (Linux).
14
12
  - An **Even Realities G2** + **R1 ring**, paired through the Even app (iOS/Android).
15
13
  - Optional but recommended: a [Tailscale](https://tailscale.com) account signed in on both your laptop and phone — gives you a stable private network without needing the public-tunnel providers below.
16
14
 
@@ -235,29 +233,7 @@ For anything else: `ever-terminal --verbose --log-file ./debug.log`, reproduce,
235
233
 
236
234
  ## Changelog
237
235
 
238
- ### 0.8.1
239
-
240
- - optimize codex session history performance for large session (windows)
241
- - add `--expose ngrok` support (need to sign in elsewhere first)
242
-
243
- ### 0.8.0
244
-
245
- - codex now only starts a background process when necessary
246
-
247
- ### 0.7.9
248
-
249
- - add debug timing for codex history api
250
- - fix middle deny behavior in multiple permission requests
251
-
252
- ### 0.7.8
253
-
254
- - add update check api
255
-
256
- ### 0.7.7
257
-
258
- - improve codex support with `ever-terminal codex` wrapper which can sync
259
- messages between codex cli and glasses
260
- - internal refactoring
236
+ Releases are automated via [semantic-release](https://semantic-release.gitbook.io/) — see the [version history on npm](https://www.npmjs.com/package/ever-terminal?activeTab=versions).
261
237
 
262
238
  ---
263
239
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ever-terminal",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "type": "module",
5
5
  "description": "Ever Terminal — AI Coding CLI on Smart Glasses & Flutter App",
6
6
  "license": "MIT",
@@ -21,29 +21,21 @@
21
21
  "ever-terminal": "dist/cli.js"
22
22
  },
23
23
  "files": [
24
- "dist/",
25
- "!dist/index-evenhub.js",
26
- "!dist/routes/audio.js",
27
- "!dist/asr.js",
28
- "!dist/at-file.js",
29
- "!dist/startup/evenhub.js"
24
+ "dist/"
30
25
  ],
31
26
  "scripts": {
32
27
  "start": "tsx src/index.ts",
33
28
  "dev": "tsx watch src/index.ts",
34
29
  "build": "rm -rf dist && tsc -p tsconfig.build.json",
35
- "build:evenhub": "rm -rf dist public && tsc -p tsconfig.build.json && pnpm run copy-frontend",
36
30
  "build:bundle": "esbuild src/index.ts --bundle --platform=node --format=esm --outfile=dist/index.mjs --packages=external",
37
31
  "start:prod": "node dist/index.mjs",
38
- "copy-frontend": "node -e \"const fs=require('fs');fs.cpSync('../frontend/dist','public',{recursive:true})\"",
39
32
  "prepack": "pnpm run build",
40
- "pack:evenhub": "V=$(node -p \"require('./package.json').version\") && pnpm run build:evenhub && node -e \"const fs=require('fs');const p=JSON.parse(fs.readFileSync('package.json','utf8'));p.files=['dist/','public/'];fs.writeFileSync('package.json',JSON.stringify(p,null,2)+'\\n');\" && pnpm pack --ignore-scripts && git checkout package.json && mv ever-terminal-$V.tgz ever-terminal-evenhub-$V.tgz",
41
33
  "lint": "oxlint src",
42
34
  "test": "node --import tsx --test \"src/**/*.test.ts\"",
43
35
  "typecheck": "tsc --noEmit"
44
36
  },
45
37
  "engines": {
46
- "node": ">=18"
38
+ "node": ">=22"
47
39
  },
48
40
  "dependencies": {
49
41
  "@anthropic-ai/claude-agent-sdk": "^0.3.195",