forked from VeinsureLee/thread-scope
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.02 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
{
"name": "thread-scope",
"version": "1.0.0",
"description": "An MCP service for incremental forum content crawling",
"main": "index.js",
"private": true,
"type": "module",
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsc",
"start": "node build/index.js",
"inspect": "npm run build && npx @modelcontextprotocol/inspector node build/index.js",
"maintain": "tsx scripts/maintain-db.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"keywords": [],
"author": "Veinsure Lee",
"license": "ISC",
"dependencies": {
"@modelcontextprotocol/sdk": "1.30.0",
"axios": "^1.19.0",
"cheerio": "^1.2.0",
"dotenv": "^17.4.2",
"iconv-lite": "^0.6.3",
"js-yaml": "^5.2.3",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/iconv-lite": "^0.0.1",
"@types/js-yaml": "^4.0.9",
"@types/node": "^26.1.2",
"@vitest/coverage-v8": "^4.1.10",
"tsx": "^4.23.5",
"typescript": "^7.0.2",
"vitest": "^4.1.10"
}
}