-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.27 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.27 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
{
"name": "threadlinking",
"version": "3.1.1",
"description": "Preserve the decisions behind your code",
"type": "module",
"files": [
"dist",
"bin",
"commands",
"skills",
".claude-plugin",
".mcp.json",
"LICENSE",
"README.md"
],
"main": "dist/index.js",
"bin": {
"threadlinking": "./bin/threadlinking",
"threadlinking-mcp": "./bin/threadlinking-mcp"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"mcp": "node dist/mcp/index.js",
"test": "vitest run",
"test:watch": "vitest"
},
"keywords": [
"cli",
"ai",
"context",
"claude",
"files",
"mcp",
"model-context-protocol"
],
"author": "Marianne",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/thrialectics/threadlinking"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.2",
"@xenova/transformers": "^2.17.2",
"commander": "^12.0.0",
"ignore": "^7.0.5",
"proper-lockfile": "^4.1.2",
"vectra": "^0.12.3",
"zod": "^4.3.5"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/proper-lockfile": "^4.1.4",
"typescript": "^5.0.0",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=20.0.0"
}
}