@holdpoint/live-daemon 0.1.0-alpha.2
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/LICENSE +21 -0
- package/dist/index.d.ts +109 -0
- package/dist/index.js +1150 -0
- package/dist/index.js.map +1 -0
- package/dist/live-ui/assets/index-BhEUhtw6.css +1 -0
- package/dist/live-ui/assets/index-Kk5SnPc-.js +50 -0
- package/dist/live-ui/assets/index-Kk5SnPc-.js.map +1 -0
- package/dist/live-ui/index.html +13 -0
- package/package.json +60 -0
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
|
+
<title>Holdpoint Live</title>
|
|
7
|
+
<script type="module" crossorigin src="/assets/index-Kk5SnPc-.js"></script>
|
|
8
|
+
<link rel="stylesheet" crossorigin href="/assets/index-BhEUhtw6.css">
|
|
9
|
+
</head>
|
|
10
|
+
<body>
|
|
11
|
+
<div id="root"></div>
|
|
12
|
+
</body>
|
|
13
|
+
</html>
|
package/package.json
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@holdpoint/live-daemon",
|
|
3
|
+
"version": "0.1.0-alpha.2",
|
|
4
|
+
"publishConfig": {
|
|
5
|
+
"access": "public",
|
|
6
|
+
"tag": "alpha"
|
|
7
|
+
},
|
|
8
|
+
"description": "Local singleton daemon for Holdpoint Live ingestion and session state",
|
|
9
|
+
"homepage": "https://holdpoint.dev",
|
|
10
|
+
"bugs": {
|
|
11
|
+
"url": "https://github.com/holdpoint-dev/holdpoint/issues"
|
|
12
|
+
},
|
|
13
|
+
"repository": {
|
|
14
|
+
"type": "git",
|
|
15
|
+
"url": "git+https://github.com/holdpoint-dev/holdpoint.git",
|
|
16
|
+
"directory": "packages/live-daemon"
|
|
17
|
+
},
|
|
18
|
+
"license": "MIT",
|
|
19
|
+
"keywords": [
|
|
20
|
+
"holdpoint",
|
|
21
|
+
"live",
|
|
22
|
+
"daemon",
|
|
23
|
+
"observability",
|
|
24
|
+
"agents"
|
|
25
|
+
],
|
|
26
|
+
"type": "module",
|
|
27
|
+
"exports": {
|
|
28
|
+
".": {
|
|
29
|
+
"types": "./dist/index.d.ts",
|
|
30
|
+
"import": "./dist/index.js"
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
"main": "./dist/index.js",
|
|
34
|
+
"types": "./dist/index.d.ts",
|
|
35
|
+
"files": [
|
|
36
|
+
"dist",
|
|
37
|
+
"README.md",
|
|
38
|
+
"LICENSE"
|
|
39
|
+
],
|
|
40
|
+
"dependencies": {
|
|
41
|
+
"ws": "^8.18.0",
|
|
42
|
+
"zod": "^3.24.1",
|
|
43
|
+
"@holdpoint/live-protocol": "0.1.0-alpha.2"
|
|
44
|
+
},
|
|
45
|
+
"devDependencies": {
|
|
46
|
+
"@types/node": "^22.10.2",
|
|
47
|
+
"@types/ws": "^8.18.1",
|
|
48
|
+
"tsup": "^8.3.5",
|
|
49
|
+
"typescript": "^5.7.2",
|
|
50
|
+
"vitest": "^2.1.8",
|
|
51
|
+
"@holdpoint/live": "0.1.1-alpha.0"
|
|
52
|
+
},
|
|
53
|
+
"scripts": {
|
|
54
|
+
"build": "tsup && node scripts/copy-live-ui.mjs",
|
|
55
|
+
"typecheck": "tsc --noEmit",
|
|
56
|
+
"test": "vitest run",
|
|
57
|
+
"lint": "eslint src --ext .ts --ignore-pattern 'src/__tests__/**'",
|
|
58
|
+
"clean": "rm -rf dist *.tsbuildinfo"
|
|
59
|
+
}
|
|
60
|
+
}
|