forked from pinkpixel-dev/sorbet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 3.83 KB
/
Copy pathpackage.json
File metadata and controls
125 lines (125 loc) · 3.83 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
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
{
"name": "@pinkpixel/sorbet",
"version": "1.1.0",
"description": "Tiling terminal emulator with resizable card layout",
"homepage": "https://github.com/pinkpixel-dev/sorbet",
"repository": {
"type": "git",
"url": "https://github.com/pinkpixel-dev/sorbet.git"
},
"author": {
"name": "PinkPixel",
"email": "admin@pinkpixel.dev",
"url": "https://pinkpixel.dev"
},
"authors": [
{
"name": "PinkPixel",
"email": "admin@pinkpixel.dev",
"url": "https://pinkpixel.dev"
}
],
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"main": "dist/main/main.js",
"bin": {
"sorbet": "./sorbet"
},
"scripts": {
"dev": "node scripts/start-dev.cjs",
"dev:renderer": "node scripts/run-vite-dev.cjs",
"dev:main": "tsc -p tsconfig.main.json --watch",
"icons": "bash scripts/generate-icons.sh",
"postinstall": "electron-builder install-app-deps",
"build": "npm run build:renderer && npm run build:main",
"build:renderer": "vite build --config vite.config.mjs",
"build:main": "tsc -p tsconfig.main.json",
"pack": "npm run icons && npm run build && electron-builder --publish never --dir",
"dist:linux:x64": "npm run icons && npm run build && electron-builder --publish never --linux AppImage deb dir --x64 && bash scripts/build-rpm.sh x64",
"dist:linux:arm64": "npm run icons && npm run build && electron-builder --publish never --linux AppImage deb dir --arm64 && bash scripts/build-rpm.sh arm64",
"dist:rpm:x64": "npm run icons && npm run build && electron-builder --publish never --linux dir --x64 && bash scripts/build-rpm.sh x64",
"dist:rpm:arm64": "npm run icons && npm run build && electron-builder --publish never --linux dir --arm64 && bash scripts/build-rpm.sh arm64",
"dist:win": "npm run icons && npm run build && electron-builder --publish never --win nsis --x64",
"electron": "node scripts/start-electron.cjs",
"start": "node scripts/start-dev.cjs"
},
"keywords": [
"electron",
"terminal",
"xterm",
"react"
],
"license": "Apache-2.0",
"build": {
"appId": "dev.pinkpixel.sorbet",
"productName": "Sorbet",
"directories": {
"output": "release"
},
"asarUnpack": [
"**/*.node"
],
"linux": {
"target": [
"AppImage",
"deb",
"dir"
],
"executableName": "sorbet",
"icon": "assets/icons/png",
"category": "Utility",
"artifactName": "${productName}-${version}-linux-${arch}.${ext}",
"desktop": {
"entry": {
"Name": "Sorbet",
"Comment": "Tiling terminal emulator with resizable card layout",
"Categories": "Utility;System;TerminalEmulator;",
"StartupWMClass": "sorbet"
}
}
},
"win": {
"target": [
"nsis"
],
"icon": "assets/icons/icon.ico",
"artifactName": "${productName}-${version}-windows-${arch}.${ext}"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"perMachine": false
}
},
"dependencies": {
"@xterm/addon-fit": "^0.10.0",
"@xterm/addon-web-links": "^0.11.0",
"@xterm/xterm": "^5.5.0",
"electron-store": "^8.2.0",
"node-pty": "^1.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-grid-layout": "^1.4.4",
"zustand": "^4.5.5"
},
"devDependencies": {
"@types/node": "^22.5.0",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@types/react-grid-layout": "^1.3.5",
"@vitejs/plugin-react": "^6.0.1",
"autoprefixer": "^10.4.20",
"concurrently": "^8.2.2",
"electron": "^41.1.0",
"electron-builder": "^26.8.1",
"postcss": "^8.4.41",
"tailwindcss": "^3.4.10",
"typescript": "^5.5.4",
"vite": "^8.0.3",
"wait-on": "^7.2.0"
}
}