-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.5 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": "exportcomments-cli",
"version": "1.1.1",
"description": "CLI tool for ExportComments.com API - export comments and reviews from 40+ platforms. Optimized for AI agent usage.",
"type": "module",
"main": "dist/cli.js",
"bin": {
"exportcomments": "dist/cli.js",
"exportcomments-cli": "dist/cli.js",
"exportcomments-mcp": "dist/mcp.js",
"exportcomments-mcp-http": "dist/mcp-http.js"
},
"files": [
"dist",
"LICENSE",
"README.md",
"CLAUDE.md"
],
"scripts": {
"build": "tsc",
"dev": "tsx src/cli.ts",
"start": "node dist/cli.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"exportcomments",
"comments",
"reviews",
"social-media",
"export",
"scraper",
"cli",
"ai-tools",
"mcp",
"model-context-protocol",
"instagram",
"youtube",
"tiktok",
"facebook",
"twitter",
"reddit",
"amazon",
"trustpilot"
],
"author": "ExportComments.com",
"license": "MIT",
"homepage": "https://exportcomments.com",
"repository": {
"type": "git",
"url": "git+https://github.com/exportcomments/exportcomments-cli.git"
},
"bugs": {
"url": "https://github.com/exportcomments/exportcomments-cli/issues"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.26.0",
"centrifuge": "^5.5.3",
"commander": "^12.1.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0"
},
"engines": {
"node": ">=18.0.0"
}
}