sessix-server 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/approval/ApprovalProxy.d.ts +86 -0
- package/dist/approval/ApprovalProxy.d.ts.map +1 -0
- package/dist/approval/ApprovalProxy.js +363 -0
- package/dist/approval/ApprovalProxy.js.map +1 -0
- package/dist/hooks/HookInstaller.d.ts +55 -0
- package/dist/hooks/HookInstaller.d.ts.map +1 -0
- package/dist/hooks/HookInstaller.js +215 -0
- package/dist/hooks/HookInstaller.js.map +1 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +3115 -0
- package/dist/index.js.map +1 -0
- package/dist/mdns/MdnsService.d.ts +36 -0
- package/dist/mdns/MdnsService.d.ts.map +1 -0
- package/dist/mdns/MdnsService.js +66 -0
- package/dist/mdns/MdnsService.js.map +1 -0
- package/dist/notification/ActivityPushChannel.d.ts +54 -0
- package/dist/notification/ActivityPushChannel.d.ts.map +1 -0
- package/dist/notification/ActivityPushChannel.js +235 -0
- package/dist/notification/ActivityPushChannel.js.map +1 -0
- package/dist/notification/ExpoNotificationChannel.d.ts +17 -0
- package/dist/notification/ExpoNotificationChannel.d.ts.map +1 -0
- package/dist/notification/ExpoNotificationChannel.js +57 -0
- package/dist/notification/ExpoNotificationChannel.js.map +1 -0
- package/dist/notification/MacNotificationChannel.d.ts +22 -0
- package/dist/notification/MacNotificationChannel.d.ts.map +1 -0
- package/dist/notification/MacNotificationChannel.js +33 -0
- package/dist/notification/MacNotificationChannel.js.map +1 -0
- package/dist/notification/NotificationService.d.ts +50 -0
- package/dist/notification/NotificationService.d.ts.map +1 -0
- package/dist/notification/NotificationService.js +177 -0
- package/dist/notification/NotificationService.js.map +1 -0
- package/dist/providers/ExecutionProvider.d.ts +60 -0
- package/dist/providers/ExecutionProvider.d.ts.map +1 -0
- package/dist/providers/ExecutionProvider.js +3 -0
- package/dist/providers/ExecutionProvider.js.map +1 -0
- package/dist/providers/ProcessProvider.d.ts +117 -0
- package/dist/providers/ProcessProvider.d.ts.map +1 -0
- package/dist/providers/ProcessProvider.js +507 -0
- package/dist/providers/ProcessProvider.js.map +1 -0
- package/dist/server.d.ts +32 -0
- package/dist/server.d.ts.map +1 -0
- package/dist/server.js +3054 -0
- package/dist/server.js.map +1 -0
- package/dist/session/ProjectReader.d.ts +44 -0
- package/dist/session/ProjectReader.d.ts.map +1 -0
- package/dist/session/ProjectReader.js +471 -0
- package/dist/session/ProjectReader.js.map +1 -0
- package/dist/session/SessionFileWatcher.d.ts +35 -0
- package/dist/session/SessionFileWatcher.d.ts.map +1 -0
- package/dist/session/SessionFileWatcher.js +207 -0
- package/dist/session/SessionFileWatcher.js.map +1 -0
- package/dist/session/SessionManager.d.ts +114 -0
- package/dist/session/SessionManager.d.ts.map +1 -0
- package/dist/session/SessionManager.js +356 -0
- package/dist/session/SessionManager.js.map +1 -0
- package/dist/ws/WsBridge.d.ts +55 -0
- package/dist/ws/WsBridge.d.ts.map +1 -0
- package/dist/ws/WsBridge.js +220 -0
- package/dist/ws/WsBridge.js.map +1 -0
- package/package.json +38 -0
package/package.json
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "sessix-server",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"bin": { "sessix-server": "./dist/index.js" },
|
|
5
|
+
"main": "./dist/server.js",
|
|
6
|
+
"types": "./dist/server.d.ts",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": {
|
|
9
|
+
"import": "./dist/server.js",
|
|
10
|
+
"require": "./dist/server.js",
|
|
11
|
+
"types": "./dist/server.d.ts"
|
|
12
|
+
},
|
|
13
|
+
"./cli": "./dist/index.js"
|
|
14
|
+
},
|
|
15
|
+
"files": ["dist"],
|
|
16
|
+
"engines": { "node": ">=22.0.0" },
|
|
17
|
+
"scripts": {
|
|
18
|
+
"build": "tsup",
|
|
19
|
+
"dev": "tsx watch src/index.ts",
|
|
20
|
+
"start": "node dist/index.js"
|
|
21
|
+
},
|
|
22
|
+
"dependencies": {
|
|
23
|
+
"ws": "^8.18.0",
|
|
24
|
+
"bonjour-service": "^1.3.0",
|
|
25
|
+
"chokidar": "^4.0.0",
|
|
26
|
+
"uuid": "^11.1.0",
|
|
27
|
+
"qrcode-terminal": "^0.12.0"
|
|
28
|
+
},
|
|
29
|
+
"devDependencies": {
|
|
30
|
+
"@sessix/shared": "*",
|
|
31
|
+
"@types/ws": "^8.5.0",
|
|
32
|
+
"@types/uuid": "^10.0.0",
|
|
33
|
+
"@types/qrcode-terminal": "^0.12.2",
|
|
34
|
+
"typescript": "^5.7.0",
|
|
35
|
+
"tsx": "^4.19.0",
|
|
36
|
+
"tsup": "^8.0.0"
|
|
37
|
+
}
|
|
38
|
+
}
|