-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.98 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.98 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
{
"name": "@signet/daemon",
"version": "0.145.10",
"license": "Apache-2.0",
"description": "Background daemon for Signet - serves dashboard, API, and memory system",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"signet-daemon": "./dist/daemon.js",
"signet-mcp": "./dist/mcp-stdio.js"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"dashboard",
"skills"
],
"scripts": {
"copy:skills": "bun ../../scripts/copy-skills.ts",
"prebuild": "bun run copy:skills",
"build": "bun run prebuild && bun run build.ts && bun run build:dashboard",
"build:types": "tsc --emitDeclarationOnly --outDir dist",
"dev": "bun --watch src/daemon.ts",
"start": "cd ../core && bun run build && cd ../daemon && bun src/daemon.ts",
"install:service": "bun src/daemon.ts --install",
"uninstall:service": "bun src/daemon.ts --uninstall",
"test": "bun test",
"build:dashboard": "bun ../../scripts/prepare-dashboard-bundle.ts .",
"prepublishOnly": "bun run build"
},
"dependencies": {
"@1password/sdk": "^0.3.0",
"@hono/node-server": "^1.14.0",
"@huggingface/transformers": "^3.4.0",
"@modelcontextprotocol/sdk": "^1.26.0",
"@signet/core": "workspace:*",
"better-sqlite3": "^11.0.0",
"chokidar": "^4.0.0",
"graphology": "^0.26.0",
"graphology-communities-louvain": "^2.0.2",
"graphology-types": "^0.24.8",
"cron-parser": "^5.5.0",
"hono": "^4.8.0",
"js-tiktoken": "^1.0.21",
"libsodium-wrappers": "^0.8.2",
"onnxruntime-node": "1.21.0",
"sharp": "^0.34.1",
"umap-js": "^1.4.0",
"yaml": "^2.8.2",
"yauzl": "2.10.0",
"zod": "^4.3.6"
},
"optionalDependencies": {
"@signet/native": "workspace:*"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.0",
"@types/libsodium-wrappers": "^0.8.2",
"@types/yauzl": "^2.10.3",
"esbuild": "^0.25.0"
}
}