-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
138 lines (138 loc) · 3.58 KB
/
package.json
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "Terminal7",
"version": "1.11.1",
"description": "A touchable terminal emulator & multiplexer tablet app",
"main": "src/index.js",
"homepage": "https://terminal7.dev",
"private": false,
"build": {
"appId": "dev.terminal7",
"files": [
"index.html",
"css/*"
],
"directories": {
"buildResources": "resources"
},
"publish": null
},
"dependencies": {
"@capacitor-community/native-audio": "^5.0.1",
"@capacitor/android": "^6.1.1",
"@capacitor/app": "^6.0.0",
"@capacitor/browser": "^6.0.1",
"@capacitor/camera": "^6.0.1",
"@capacitor/cli": "^6.1.1",
"@capacitor/clipboard": "^6.0.0",
"@capacitor/core": "^6.1.1",
"@capacitor/device": "^6.0.0",
"@capacitor/filesystem": "^6.0.0",
"@capacitor/ios": "^6.1.1",
"@capacitor/keyboard": "^6.0.1",
"@capacitor/network": "^6.0.1",
"@capacitor/preferences": "^6.0.1",
"@capacitor/status-bar": "^6.0.0",
"@revenuecat/purchases-capacitor": "^7.7.1",
"@tuzig/codemirror": "5.65.5-mods",
"@tuzig/toml": "^3.0.0-browser",
"@types/marked": "^4.0.7",
"@xterm/addon-fit": "^0.10.0",
"@xterm/addon-image": "^0.8.0",
"@xterm/addon-search": "^0.15.0",
"@xterm/addon-web-links": "^0.11.0",
"@xterm/addon-webgl": "^0.18.0",
"@xterm/xterm": "^5.5.0",
"bowser": "^2.11.0",
"capacitor-native-biometric": "^4.1.3",
"capacitor-rate-app": "^4.0.3",
"capacitor-ssh-plugin": "^0.5.0",
"ed25519-keygen": "^0.2.4",
"fontfaceobserver": "^2.3.0",
"glob": "<8",
"idb": "7.1.1",
"interactjs": "^1.10.27",
"marked": "^4.1.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@capacitor/assets": "^3.0.5",
"@interactjs/types": "^1.10.27",
"@playwright/test": "^1.20.1",
"@types/xterm": "^3.0.0",
"@typescript-eslint/eslint-plugin": "<6",
"@typescript-eslint/parser": "<6",
"eslint": "<9",
"interactjs": "^1.10.27",
"jsdom": "^19.0.0",
"native-run": "^1.7.4",
"typescript": "<5",
"vi-canvas-mock": "^1.0.0",
"vite": "^5.4.6",
"vite-plugin-pwa": "^0.20.1",
"vitest": "^2.0.5",
"workbox-build": "^7.0.0",
"workbox-window": "^7.0.0",
"yarn": "^1.22.17"
},
"scripts": {
"start": "npm run dev",
"dev": "vite",
"stage": "vite build --sourcemap && vite preview",
"run": "vite build -c vite.dev.config.js && cap run ios",
"runa": "vite build -c vite.dev.config.js && cap run android",
"test": "vitest run && ./aatp/run",
"build": "vite build -c vite.dev.config.js",
"clean": "rm -rf dist ios/App/App/public/*",
"aatp": "bash ./aatp/run",
"lint": "npx eslint aatp src --ext .js,.ts && npx tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tuzig/terminal7.git"
},
"keywords": [
"terminal",
"tmux",
"webrtc"
],
"author": "Benny Daon",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/tuzig/terminal7/issues"
},
"eslintConfig": {
"root": true,
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json"
},
"plugins": [
"@typescript-eslint/eslint-plugin"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"env": {
"browser": true
},
"globals": {
"db": true,
"terminal7": true
},
"rules": {
"no-empty": [
"error",
{
"allowEmptyCatch": true
}
],
"no-constant-condition": [
"error",
{
"checkLoops": false
}
]
}
}
}