terminalos 0.4.0

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.
package/package.json ADDED
@@ -0,0 +1,104 @@
1
+ {
2
+ "name": "terminalos",
3
+ "version": "0.4.0",
4
+ "description": "The terminal purpose-built for AI coding workflows.",
5
+ "main": "electron/main.js",
6
+ "bin": {
7
+ "terminalos": "./bin/cli.js"
8
+ },
9
+ "files": [
10
+ "bin/",
11
+ "build/",
12
+ "runtime-dist/",
13
+ "electron/",
14
+ "package.json"
15
+ ],
16
+ "scripts": {
17
+ "start": "node server.js",
18
+ "dev": "npm run build:electron && concurrently \"vite\" \"wait-on http://localhost:5173 && electron .\" \"tsc -p electron/tsconfig.json --watch --preserveWatchOutput\"",
19
+ "dev:web": "concurrently \"vite\" \"tsx server-pty.ts\"",
20
+ "build:web": "vite build",
21
+ "start:server": "tsx server-pty.ts",
22
+ "build:electron": "tsc -p electron/tsconfig.json",
23
+ "build": "vite build && tsc -p electron/tsconfig.json",
24
+ "build:runtime": "tsc -p runtime/tsconfig.json",
25
+ "build:all": "npm run build && npm run build:runtime",
26
+ "build:npx": "npm run build:web && npm run build:runtime",
27
+ "icons": "python3 scripts/generate-icons.py",
28
+ "dist": "npm run dist:mac",
29
+ "dist:mac": "npm run icons && npm run build && sh -c 'CXXFLAGS=\"-I$(xcrun --show-sdk-path)/usr/include/c++/v1\" electron-builder --mac'",
30
+ "dist:win": "npm run build && electron-builder --win",
31
+ "rebuild": "sh -c 'CXXFLAGS=\"-I$(xcrun --show-sdk-path)/usr/include/c++/v1\" electron-rebuild -f -w node-pty'",
32
+ "postinstall": "electron-builder install-app-deps || true"
33
+ },
34
+ "devDependencies": {
35
+ "@types/express": "^5.0.6",
36
+ "@types/node": "^22.0.0",
37
+ "@types/react": "^19.0.0",
38
+ "@types/react-dom": "^19.0.0",
39
+ "@types/uuid": "^10.0.0",
40
+ "@types/ws": "^8.18.1",
41
+ "@vitejs/plugin-react": "^4.3.0",
42
+ "@xterm/addon-canvas": "^0.7.0",
43
+ "@xterm/addon-fit": "^0.10.0",
44
+ "@xterm/addon-search": "^0.15.0",
45
+ "@xterm/addon-web-links": "^0.11.0",
46
+ "@xterm/addon-webgl": "^0.19.0",
47
+ "@xterm/xterm": "^5.5.0",
48
+ "concurrently": "^9.0.0",
49
+ "electron": "^33.0.0",
50
+ "electron-builder": "^25.0.0",
51
+ "electron-rebuild": "^3.2.9",
52
+ "highlight.js": "^11.11.1",
53
+ "html2pdf.js": "^0.14.0",
54
+ "marked": "^17.0.5",
55
+ "react": "^19.0.0",
56
+ "react-dom": "^19.0.0",
57
+ "react-window": "^1.8.10",
58
+ "tsx": "^4.21.0",
59
+ "typescript": "^5.6.0",
60
+ "vite": "^6.0.0",
61
+ "vite-plugin-electron": "^0.28.0",
62
+ "wait-on": "^8.0.0",
63
+ "zustand": "^5.0.0"
64
+ },
65
+ "dependencies": {
66
+ "chokidar": "^4.0.0",
67
+ "electron-updater": "^6.3.0",
68
+ "express": "^4.21.0",
69
+ "mammoth": "^1.12.0",
70
+ "node-pty": "^1.0.0",
71
+ "pdf-parse": "^2.4.5",
72
+ "uuid": "^10.0.0",
73
+ "ws": "^8.20.0"
74
+ },
75
+ "build": {
76
+ "appId": "dev.terminalos.app",
77
+ "productName": "terminalOS",
78
+ "directories": {
79
+ "output": "dist"
80
+ },
81
+ "files": [
82
+ "build/**",
83
+ "electron/**",
84
+ "node_modules/**"
85
+ ],
86
+ "mac": {
87
+ "target": [
88
+ {
89
+ "target": "dmg",
90
+ "arch": [
91
+ "x64",
92
+ "arm64"
93
+ ]
94
+ }
95
+ ],
96
+ "category": "public.app-category.developer-tools",
97
+ "icon": "resources/icon.icns"
98
+ },
99
+ "win": {
100
+ "target": "nsis",
101
+ "icon": "resources/icon.ico"
102
+ }
103
+ }
104
+ }