forked from tuzig/terminal7
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
128 lines (128 loc) · 3.19 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
{
"name": "terminal7",
"version": "1.7.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/android": "^5.0.0",
"@capacitor/app": "^5.0.0",
"@capacitor/browser": "^5.0.0",
"@capacitor/camera": "^5.0.6",
"@capacitor/cli": "^5.0.0",
"@capacitor/clipboard": "^5.0.0",
"@capacitor/core": "^5.0.0",
"@capacitor/device": "^5.0.0",
"@capacitor/ios": "^5.0.0",
"@capacitor/keyboard": "^5.0.0",
"@capacitor/network": "^5.0.0",
"@capacitor/preferences": "^5.0.0",
"@capacitor/status-bar": "^5.0.0",
"@capgo/capacitor-purchases": "^5.0.0",
"@liveconfig/xterm-webfont": "^2.1.0",
"@tuzig/codemirror": "5.65.5-mods",
"@tuzig/toml": "^3.0.0-browser",
"@types/marked": "^4.0.7",
"capacitor-native-biometric": "^4.1.3",
"capacitor-rate-app": "^3.1.0-beta.1",
"capacitor-ssh-plugin": "^0.5.0",
"ed25519-keygen": "^0.2.4",
"glob": "<8",
"hammerjs": "<3",
"idb": "7.1.1",
"marked": "^4.1.0",
"uuid": "^8.3.2",
"xterm": "^5.1.0",
"xterm-addon-fit": "^0.7.0",
"xterm-addon-image": "^0.4.0",
"xterm-addon-search": "^0.11.0",
"xterm-addon-web-links": "^0.8.0",
"xterm-addon-webgl": "^0.14.0"
},
"devDependencies": {
"@capacitor/assets": "^2.0.4",
"@playwright/test": "^1.20.1",
"@typescript-eslint/eslint-plugin": "<6",
"@typescript-eslint/parser": "<6",
"eslint": "<9",
"jsdom": "^19.0.0",
"typescript": "<5",
"vi-canvas-mock": "^1.0.0",
"vite": "^4.0.0",
"vite-plugin-pwa": "^0.16.4",
"vitest": "<1.0.0",
"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": "cap run ios",
"test": "vitest",
"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,.jsx,.ts,.tsx",
"capacitor:copy:before": "npm run build"
},
"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",
"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
}
]
}
}
}