-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 749 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 749 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
29
30
31
32
33
34
35
36
{
"name": "nomacode",
"version": "2026.3.1",
"description": "Mobile-first web UI for running AI coding assistants on Android via Termux",
"main": "server/index.js",
"bin": {
"nomacode": "./bin/nomacode.js"
},
"scripts": {
"start": "node bin/nomacode.js",
"dev": "node bin/nomacode.js --port 3000"
},
"keywords": [
"termux",
"mobile",
"coding",
"claude-code",
"terminal",
"android"
],
"author": "",
"license": "MIT",
"dependencies": {
"express": "^4.18.2",
"simple-git": "^3.22.0",
"uuid": "^9.0.1",
"ws": "^8.16.0"
},
"optionalDependencies": {
"node-pty": "^1.1.0",
"@mmmbuto/node-pty-android-arm64": "^1.1.0"
},
"engines": {
"node": ">=18.0.0"
}
}