-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.37 KB
/
Copy pathpackage.json
File metadata and controls
121 lines (121 loc) · 3.37 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
{
"name": "termivin",
"productName": "Termivin",
"version": "0.4.0",
"description": "Workspace manager for terminals, optimized for AI CLI clients (Claude Code, Codex)",
"keywords": [
"terminal",
"workspace",
"claude-code",
"codex",
"electron",
"xterm",
"pty"
],
"main": "src/main.js",
"bin": {
"termivin": "bin/termivin.js"
},
"files": [
"src/",
"bin/",
"assets/",
"LICENSE.md",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"prestart": "node src/mac-app-name.js",
"start": "electron .",
"start:debug": "electron . --remote-debugging-port=9222",
"test": "node test/ci-check.mjs",
"test:e2e": "node test/smoke.mjs",
"test:bus": "node test/bus.mjs",
"test:topics": "node test/topics.mjs",
"test:dashboards": "node test/dashboards.mjs 9223",
"test:dock-groups": "node test/dock-groups.mjs 9223",
"test:paste": "node test/paste.mjs 9223",
"test:overlays": "node test/overlays.mjs 9223",
"test:themes": "node test/themes.mjs 9223",
"test:bus-ui": "node test/bus-ui.mjs 9223",
"test:features": "node test/features.mjs 9223",
"prestart:dev": "node src/mac-app-name.js",
"start:dev": "electron . --user-data-dir=.dev-profile --remote-debugging-port=9223",
"test:restore": "node test/restore.mjs",
"test:external": "node test/external.mjs",
"test:rename": "node test/rename.mjs",
"test:convert": "node test/convert.mjs",
"test:clone": "node test/clone.mjs",
"test:resize": "node test/resize.mjs",
"test:dock": "node test/dock.mjs",
"test:arrange": "node test/arrange.mjs",
"test:ws-reorder": "node test/ws-reorder.mjs",
"test:move-drag": "node test/move-drag.mjs",
"test:adopt": "node test/adopt.mjs",
"rebuild": "electron-rebuild -f -w node-pty",
"icns": "bash scripts/make-icns.sh",
"pack:mac": "electron-builder --mac --dir",
"dist:mac": "electron-builder --mac"
},
"license": "PolyForm-Noncommercial-1.0.0",
"author": "phamr39 <pha.mr3998@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/phamr39/termivin.git"
},
"homepage": "https://github.com/phamr39/termivin#readme",
"bugs": {
"url": "https://github.com/phamr39/termivin/issues"
},
"engines": {
"node": ">=18"
},
"build": {
"appId": "com.termivin.app",
"productName": "Termivin",
"copyright": "Copyright © 2026 phamr39",
"afterPack": "./build/after-pack.js",
"directories": {
"output": "dist",
"buildResources": "assets"
},
"files": [
"src/**/*",
"bin/**/*",
"assets/**/*",
"package.json",
"node_modules/**/*",
"!**/*.md"
],
"asar": true,
"asarUnpack": [
"**/node_modules/node-pty/**"
],
"mac": {
"target": [
"dmg",
"zip"
],
"icon": "assets/icon.icns",
"category": "public.app-category.developer-tools",
"artifactName": "${productName}-${version}-${arch}.${ext}"
},
"dmg": {
"title": "${productName} ${version}"
}
},
"dependencies": {
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-web-links": "^0.12.0",
"@xterm/xterm": "^6.0.0",
"node-pty": "^1.1.0"
},
"optionalDependencies": {
"electron": "^43.1.1"
},
"devDependencies": {
"@electron/rebuild": "^4.2.0",
"electron-builder": "^26.15.3",
"playwright-core": "^1.61.1"
}
}