-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.49 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.49 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
{
"name": "selene",
"version": "1.0.0",
"description": "ADHD-focused knowledge management system",
"private": true,
"scripts": {
"mcp-wrapper": "node scripts/things-mcp-wrapper.js",
"test-mcp": "node scripts/test-mcp-wrapper.js",
"start": "ts-node src/server.ts",
"dev": "ts-node-dev src/server.ts",
"workflow:process-llm": "ts-node src/workflows/process-llm.ts",
"workflow:extract-tasks": "ts-node src/workflows/extract-tasks.ts",
"workflow:compute-embeddings": "echo 'DEPRECATED: Use workflow:index-vectors instead' && exit 1",
"workflow:compute-associations": "echo 'DEPRECATED: Use workflow:compute-relationships instead' && exit 1",
"workflow:daily-summary": "ts-node src/workflows/daily-summary.ts",
"workflow:index-vectors": "ts-node src/workflows/index-vectors.ts",
"workflow:compute-relationships": "ts-node src/workflows/compute-relationships.ts"
},
"dependencies": {
"@lancedb/lancedb": "^0.23.0",
"better-sqlite3": "^11.0.0",
"dotenv": "^17.2.3",
"express": "^4.18.2",
"fastify": "^4.26.0",
"jsonwebtoken": "^9.0.3",
"pino": "^8.18.0",
"pino-pretty": "^10.3.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.8",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^20.11.0",
"ts-node": "^10.9.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.0"
},
"keywords": [
"knowledge-management",
"adhd",
"things",
"mcp"
],
"author": "Chase Easterling",
"license": "MIT"
}