@mobius-os/mobius 0.3.6 → 0.3.7

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 +4 -3
  2. package/package.json +6 -26
package/README.md CHANGED
@@ -169,6 +169,7 @@ mobius
169
169
 
170
170
  If the PATH export is not already in the shell profile, add it to `~/.bashrc`
171
171
  once. Using the explicit user prefix avoids the `EACCES ... /usr/local/lib/node_modules/mobius`
172
- error produced by a root-owned npm global prefix. The built package promotes
173
- `tsx` to a runtime dependency, so a production/global install can execute the
174
- TypeScript entry point without retaining the source checkout's devDependencies.
172
+ error produced by a root-owned npm global prefix. The source and built package
173
+ both declare `tsx` as a runtime dependency, so production/global installs can
174
+ execute the TypeScript entry point without retaining the source checkout's
175
+ devDependencies.
package/package.json CHANGED
@@ -1,50 +1,30 @@
1
1
  {
2
2
  "name": "@mobius-os/mobius",
3
- "version": "0.3.6",
3
+ "version": "0.3.7",
4
4
  "type": "module",
5
5
  "description": "Mobius terminal client. Reuses Mobius frontend TypeScript types and jsonl entry shapes.",
6
6
  "bin": {
7
7
  "mobius": "bin/mobius-tui.js",
8
8
  "mobius-tui": "bin/mobius-tui.js"
9
9
  },
10
+ "scripts": {
11
+ "start": "tsx src/main.tsx"
12
+ },
10
13
  "files": [
11
14
  "bin",
12
15
  "src",
13
16
  "README.md"
14
17
  ],
15
- "scripts": {
16
- "dev": "tsx src/main.tsx",
17
- "start": "tsx src/main.tsx",
18
- "typecheck": "tsc --noEmit",
19
- "test:integration": "tsx tests/integration.test.ts",
20
- "test:ui": "tsx tests/ui.test.tsx",
21
- "test:flow": "tsx tests/flow.test.tsx",
22
- "test:resume": "tsx tests/resume.test.tsx",
23
- "test:aimux": "tsx tests/aimux.test.tsx",
24
- "test:reconnect": "tsx tests/reconnect.test.tsx",
25
- "test:screen": "tsx tests/screen.test.tsx",
26
- "test:scroll": "tsx tests/scroll.test.tsx",
27
- "test": "npm run typecheck && npm run test:ui && npm run test:integration"
28
- },
29
18
  "dependencies": {
30
19
  "chalk": "^5.3.0",
31
20
  "cli-highlight": "2.1.11",
32
21
  "extract-zip": "^2.0.1",
33
22
  "ink": "5.2.0",
34
23
  "marked": "12.0.2",
35
- "react": "18.3.1"
36
- },
37
- "devDependencies": {
38
- "@types/node": "18.19.34",
39
- "@types/react": "18.3.3",
40
- "ink-testing-library": "4.0.0",
41
- "tsx": "4.19.2",
42
- "typescript": "5.4.5"
24
+ "react": "18.3.1",
25
+ "tsx": "4.19.2"
43
26
  },
44
27
  "engines": {
45
28
  "node": ">=18"
46
- },
47
- "publishConfig": {
48
- "access": "public"
49
29
  }
50
30
  }