-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 2.36 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
{
"name": "AYA",
"version": "0.1.0",
"description": "Android adb desktop app",
"main": "dist/main/index.js",
"scripts": {
"dev": "concurrently \"npm run dev:main\" \"npm run dev:preload\" \"npm run dev:renderer\"",
"dev:main": "vite build --watch --config vite.main.ts --mode=development",
"dev:preload": "vite build --watch --config vite.preload.ts --mode=development",
"dev:renderer": "vite",
"build:main": "vite build --config vite.main.ts",
"build:preload": "vite build --config vite.preload.ts",
"build:renderer": "vite build",
"build": "zx script/build.mjs",
"pack": "zx script/pack.mjs",
"upload": "zx script/upload.mjs",
"adb": "zx script/adb.mjs",
"format": "lsla prettier \"src/**/*.{ts,tsx,scss,css,json}\" \"*.{js,ts,json}\" \"script/*.mjs\" --write",
"start": "electron ./dist/main/index.js",
"lint": "eslint \"src/**/*.{ts,tsx}\"",
"genIcon": "lsla genIcon --input src/renderer/icon --output src/renderer/icon.css --name aya-icon",
"genTheme": "lsla genTheme --input src/common/theme.json --output src/renderer/theme.scss && lsla genTheme --input src/common/theme.json --output src/common/theme.ts"
},
"keywords": [
"adb"
],
"author": "surunzi",
"license": "AGPL-3.0",
"devDependencies": {
"@aws-sdk/client-s3": "^3.689.0",
"@devicefarmer/adbkit": "^3.3.6",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.2",
"@xterm/addon-canvas": "^0.7.0",
"@xterm/addon-fit": "^0.10.0",
"@xterm/addon-unicode11": "^0.8.0",
"@xterm/addon-webgl": "^0.18.0",
"@xterm/xterm": "^5.5.0",
"concurrently": "^9.0.1",
"custom-electron-titlebar": "^4.2.8",
"electron": "^33.0.1",
"electron-builder": "^25.1.8",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"fs-extra": "^11.2.0",
"globals": "^15.11.0",
"licia": "^1.44.0",
"luna-data-grid": "^1.2.1",
"luna-image-viewer": "^0.5.2",
"luna-logcat": "^0.4.1",
"luna-menu": "^0.1.3",
"luna-modal": "^1.2.3",
"luna-notification": "^0.3.2",
"luna-setting": "^2.0.1",
"luna-tab": "^0.3.2",
"luna-toolbar": "^0.6.2",
"mobx": "^6.13.5",
"mobx-react-lite": "^4.0.7",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sass": "^1.80.2",
"typescript-eslint": "^8.11.0",
"vite": "^5.4.9",
"zx": "^8.1.9"
}
}