-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) 路 1.62 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) 路 1.62 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
{
"name": "@nodite/rednote-mcp",
"version": "0.5.1",
"description": "A friendly tool to help you access and interact with Xiaohongshu (RedNote) content through Model Context Protocol.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"rednote-mcp": "./dist/cli.js"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"test": "jest",
"prepublishOnly": "npm run build"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"@types/archiver": "^7.0.0",
"archiver": "^7.0.1",
"commander": "^14.0.3",
"dotenv": "^17.3.1",
"mcp-sdk": "^0.1.0",
"playwright-extra": "^4.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"rebrowser-playwright": "^1.52.0",
"winston": "^3.19.0",
"winston-daily-rotate-file": "^5.0.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^25.5.0",
"jest": "^30.3.0",
"playwright": "^1.52.0",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"keywords": [
"rednote",
"xiaohongshu",
"xhs",
"mcp",
"model-context-protocol",
"cursor",
"ai"
],
"author": "Oscaner <oscaner1997@163.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nodite/rednote-mcp.git"
},
"bugs": {
"url": "https://github.com/nodite/rednote-mcp/issues"
},
"homepage": "https://github.com/nodite/rednote-mcp#readme",
"engines": {
"node": ">=16"
}
}