This repository has been archived by the owner on Jan 6, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
107 lines (107 loc) · 3.93 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
{
"name": "@terminalone/monorepo",
"productName": "Terminal One",
"version": "1.6.3",
"description": "A fast, elegant and intelligent cross-platform terminal.",
"author": "atinylittleshell <shell@atinylittleshell.me>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/kunchenguid/TerminalOne.git"
},
"bugs": {
"url": "https://github.com/kunchenguid/TerminalOne/issues"
},
"keywords": [
"terminal",
"terminal-emulator",
"terminal-multiplexer",
"tmux",
"cross-platform",
"electron",
"xterm.js"
],
"engineStrict": true,
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"dev:app": "cross-env NODE_ENV=development BROWSER=none concurrently -k \"turbo run dev:terminal\" \"wait-on -d 3000 -i 5000 http://localhost:3000 && turbo run build:app && electron .\"",
"build:app:windows": "shx rm -rf dist && npm run build && electron-builder --win --publish=never",
"build:app:mac": "shx rm -rf dist && npm run build && electron-builder --mac --publish=never",
"build:app:linux": "shx rm -rf dist && npm run build && electron-builder --linux --publish=never",
"publish:app:windows:x64": "shx rm -rf dist && npm run rebuild:node-pty:x64 && npm run build && electron-builder --win --x64 --publish=always",
"publish:app:mac:x64": "shx rm -rf dist && npm run rebuild:node-pty:x64 && npm run build && electron-builder --mac --x64 --publish=always",
"publish:app:mac:arm64": "shx rm -rf dist && npm run rebuild:node-pty:arm64 && npm run build && electron-builder --mac --arm64 --publish=always",
"publish:app:linux:x64": "shx rm -rf dist && npm run rebuild:node-pty:x64 && npm run build && electron-builder --linux --x64 --publish=always",
"release:app": "git checkout releases/terminalone/app && git pull && git merge --no-edit --no-ff main && git push && git checkout main",
"build": "turbo run build",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"test": "turbo run test",
"rebuild:node-pty": "electron-rebuild -f -o node-pty -m packages/app",
"rebuild:node-pty:x64": "electron-rebuild -f -a x64 -o node-pty -m packages/app",
"rebuild:node-pty:arm64": "electron-rebuild -f -a arm64 -o node-pty -m packages/app",
"prepare": "node -e \"process.env.NODE_ENV != 'production' && process.exit(1)\" || electron-builder install-app-deps && npm run rebuild:node-pty"
},
"main": "packages/app/dist/main.bundle.js",
"build": {
"appId": "io.terminalone.app",
"productName": "Terminal One",
"artifactName": "TerminalOne-${version}-${arch}.${ext}",
"extends": null,
"afterSign": "./scripts/notarize.js",
"files": [
"packages/app/dist/**/*"
],
"includeSubNodeModules": true,
"directories": {
"buildResources": "packages/app/assets"
},
"linux": {
"category": "TerminalEmulator",
"target": "AppImage",
"icon": "icon.icns"
},
"mac": {
"category": "public.app-category.developer-tools",
"entitlements": "./scripts/entitlements.plist",
"entitlementsInherit": "./scripts/entitlements.plist",
"darkModeSupport": true
}
},
"devDependencies": {
"@electron/notarize": "^2.3.0",
"@electron/rebuild": "^3.5.0",
"@terminalone/eslint-config-custom": "*",
"concurrently": "^8.0.1",
"cross-env": "^7.0.3",
"electron": "^28.1.3",
"electron-builder": "^24.13.3",
"electron-link": "^0.6.0",
"electron-mksnapshot": "^28.2.3",
"eslint": "^7.32.0",
"prettier": "^2.8.7",
"shx": "^0.3.4",
"turbo": "^1.10.16",
"wait-on": "^7.0.1"
},
"optionalDependencies": {
"dmg-license": "^1.0.11"
},
"prettier": {
"semi": true,
"trailingComma": "all",
"singleQuote": true,
"printWidth": 80,
"tabWidth": 2
},
"homepage": "https://github.com/atinylittleshell/TerminalOne",
"packageManager": "npm@9.2.0",
"workspaces": [
"packages/*"
],
"dependencies": {
"nan": "^2.18.0"
}
}