-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.1 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 3.1 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
{
"name": "reflectt-node",
"version": "0.1.34",
"description": "Coordinate your AI agent team. Shared tasks, memory, reflections, and presence. Self-host for free.",
"main": "dist/index.js",
"type": "module",
"bin": {
"reflectt": "./dist/cli.js"
},
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "node tools/bake-commit.mjs && tsc",
"start": "node dist/index.js",
"lint": "eslint src --ext .ts",
"test": "vitest run",
"test:summary": "node tools/test-summary.mjs",
"pr:create": "node tools/pr-create.mjs",
"test:idle-nudge:fixtures": "tsx tools/test-idle-nudge-lane-fixtures.ts",
"test:idle-nudge:coherence": "tsx tools/idle-nudge-coherence-harness.ts",
"test:task-linkify:regression": "tsx tools/task-linkify-regression-harness.ts",
"test:ssot-indicator:regression": "tsx tools/ssot-indicator-regression-harness.ts",
"test:reflection-dedup:regression": "tsx tools/test-reflection-dedup-regression.ts",
"test:reflection-pipeline-health:regression": "tsx tools/test-reflection-pipeline-health-regression.ts",
"check:route-docs-contract": "node tools/check-route-docs-contract.mjs",
"test:task-linkify:dryrun-validator": "tsx tools/task-linkify-dryrun-transcript-validator.ts",
"test:task-linkify:dryrun-negative-fixtures": "tsx tools/task-linkify-dryrun-validator-negative-harness.ts",
"tasks:backfill-intake-fields": "tsx tools/backfill-task-intake-fields.ts",
"tasks:migrate:supabase": "tsx tools/migrate-tasks-to-supabase.ts",
"test:watch": "vitest",
"deploy": "bash scripts/post-merge-rebuild.sh",
"hooks:install": "bash scripts/install-hooks.sh",
"prepublishOnly": "npm run build",
"prepack": "chmod +x dist/cli.js"
},
"keywords": [
"ai-agents",
"agent-coordination",
"task-management",
"self-hosted",
"ai",
"developer-tools",
"reflectt"
],
"author": "Team Reflectt",
"license": "Apache-2.0",
"dependencies": {
"@fastify/cors": "^10.0.1",
"@fastify/multipart": "^9.4.0",
"@fastify/websocket": "^11.0.1",
"@modelcontextprotocol/sdk": "^1.26.0",
"@sentry/node": "^10.43.0",
"@supabase/supabase-js": "^2.95.3",
"better-sqlite3": "^12.6.2",
"commander": "^14.0.3",
"dotenv": "^16.4.7",
"fastify": "^5.2.2",
"sqlite-vec": "^0.1.7-alpha.2",
"ws": "^8.18.0",
"yaml": "^2.8.2",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^22.10.6",
"@types/ws": "^8.5.13",
"pino-pretty": "^13.1.3",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vitest": "^4.0.18"
},
"repository": {
"type": "git",
"url": "https://github.com/reflectt/reflectt-node.git"
},
"homepage": "https://reflectt.ai",
"bugs": {
"url": "https://github.com/reflectt/reflectt-node/issues"
},
"engines": {
"node": ">=20"
},
"files": [
"dist/",
"public/",
"templates/",
"defaults/",
"LICENSE",
"README.md"
],
"optionalDependencies": {
"@browserbasehq/stagehand": "^3.1.0",
"@xenova/transformers": "^2.17.2"
},
"overrides": {
"sharp": "^0.34.0"
}
}