-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 2.2 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 2.2 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": "t3code-mobile",
"version": "1.1.0",
"description": "Unofficial Android and iPhone companion app with optional HTTPS/PWA proxy for T3 Code.",
"main": "server.js",
"scripts": {
"start": "node server.js",
"build:apk": "build-apk.bat",
"generate:icons": "node generate-icons.js",
"check:js": "node --check server.js && node --check generate-icons.js && node --check sw.js && node --check check-release.js && node --check smoke-proxy.js && node --check webview-harness.js && node --check lib/html.js && node --check lib/upload-injection.js && node --check test/test-html.js && node --check test/test-upload-injection.js",
"lint": "eslint server.js smoke-proxy.js check-release.js webview-harness.js generate-icons.js sw.js lib/html.js lib/upload-injection.js test/test-html.js test/test-upload-injection.js",
"check:manifest": "node -e \"JSON.parse(require('fs').readFileSync('manifest.json', 'utf8')); console.log('manifest.json OK')\"",
"check:repo": "node check-release.js",
"check:release": "npm run check:repo",
"test:proxy": "node smoke-proxy.js",
"start:iphone": "node server.js --http",
"harness:http": "node webview-harness.js --mode=http",
"harness:https-bad-cert": "node webview-harness.js --mode=https-bad-cert",
"harness:redirect": "node webview-harness.js --mode=redirect",
"test:units": "node test/test-html.js && node test/test-upload-injection.js",
"test": "npm run check:js && npm run lint && npm run check:manifest && npm run check:repo && npm run test:units && npm run test:proxy"
},
"keywords": [
"t3-code",
"android",
"android-app",
"self-hosted",
"remote-access",
"webview",
"tailscale",
"pwa",
"pwa-proxy"
],
"author": "JSvandijk",
"license": "MIT",
"engines": {
"node": ">=20.19.0"
},
"type": "commonjs",
"repository": {
"type": "git",
"url": "git+https://github.com/JSvandijk/t3code-mobile.git"
},
"bugs": {
"url": "https://github.com/JSvandijk/t3code-mobile/issues"
},
"homepage": "https://github.com/JSvandijk/t3code-mobile#readme",
"dependencies": {
"http-proxy": "^1.18.1"
},
"devDependencies": {
"eslint": "^10.3.0",
"selfsigned": "^5.5.0"
}
}