-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.37 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.37 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "termora",
"version": "0.0.1",
"private": true,
"type": "module",
"description": "Browser-based access to your local terminal and Claude Code from any device",
"license": "MIT",
"author": "termora contributors",
"homepage": "https://termora.dev",
"repository": {
"type": "git",
"url": "https://github.com/royaluniondesign-sys/termora.git"
},
"bugs": {
"url": "https://github.com/royaluniondesign-sys/termora/issues"
},
"keywords": [
"terminal",
"remote-terminal",
"phone-terminal",
"claude-code",
"xterm",
"pwa",
"node-pty",
"websocket",
"ngrok",
"developer-tools"
],
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "turbo run dev --filter=@termora/agent --filter=@termora/web --parallel --log-prefix=none --log-order=stream --verbosity=0",
"build": "turbo run build",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"format": "prettier --write .",
"format:check": "prettier --check .",
"postinstall": "node scripts/fix-node-pty.js"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"eslint": "^9.0.0",
"prettier": "^3.3.0",
"turbo": "^2.3.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.0.0",
"vitest": "^4.1.2"
},
"engines": {
"node": ">=20.0.0"
},
"packageManager": "npm@10.8.0"
}