-
-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.98 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.98 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
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
{
"name": "echo",
"productName": "ECHO",
"appId": "io.liriliri.echo",
"version": "1.0.1",
"description": "Harmony hdc 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",
"start": "electron ./dist/main/index.js --inspect=9229",
"lint": "eslint \"src/**/*.{ts,tsx}\"",
"init": "npm run resources",
"resources": "zx script/resources.mjs",
"format": "lsla prettier \"src/**/*.{ts,tsx,scss,css,json}\" \"*.{js,ts,json}\" \"script/*.mjs\" --write",
"gen:icon": "lsla genIcon --input src/renderer/ --output src/renderer/icon.css --name echo-icon --source src/renderer/icon/",
"gen:theme": "lsla genTheme --input src/common/theme.json --output src/renderer/theme.scss && lsla genTheme --input src/common/theme.json --output src/common/theme.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/liriliri/echo.git"
},
"keywords": [
"hdc",
"harmony"
],
"author": "surunzi",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/liriliri/echo/issues"
},
"homepage": "https://github.com/liriliri/echo#readme",
"devDependencies": {
"@aws-sdk/client-s3": "^3.779.0",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.3.4",
"@xmldom/xmldom": "^0.9.8",
"@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",
"axios": "^1.8.4",
"concurrently": "^9.1.2",
"custom-electron-titlebar": "^4.2.8",
"electron": "30.5.1",
"electron-builder": "^26.0.12",
"electron-updater": "^6.6.2",
"eslint": "^9.21.0",
"eslint-config-prettier": "^10.0.2",
"fs-extra": "^11.3.0",
"globals": "^16.0.0",
"hdckit": "^0.12.1",
"licia": "^1.48.0",
"luna-command-palette": "^0.3.1",
"luna-data-grid": "^2.0.0",
"luna-dom-viewer": "^1.8.3",
"luna-icon-list": "^0.2.5",
"luna-image-viewer": "^1.1.0",
"luna-logcat": "^0.6.3",
"luna-menu": "^0.2.0",
"luna-modal": "^1.3.3",
"luna-notification": "^0.3.3",
"luna-performance-monitor": "^1.2.2",
"luna-setting": "^2.0.2",
"luna-split-pane": "^0.4.1",
"luna-tab": "^0.4.3",
"luna-toolbar": "^0.9.2",
"luna-virtual-list": "^0.1.1",
"mobx": "^6.13.6",
"mobx-react-lite": "^4.1.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"sass": "^1.85.1",
"typescript-eslint": "^8.26.0",
"vite": "^5.4.14",
"zx": "^8.4.1"
}
}