-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 3.17 KB
/
package.json
File metadata and controls
125 lines (125 loc) · 3.17 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "@xquik/tweetclaw",
"version": "1.6.3",
"description": "Post tweets, reply, like, retweet, follow, DM & more from OpenClaw - full X/Twitter automation via Xquik. 111 endpoints, reads from $0.00015/call.",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/Xquik-dev/tweetclaw.git"
},
"homepage": "https://github.com/Xquik-dev/tweetclaw#readme",
"bugs": {
"url": "https://github.com/Xquik-dev/tweetclaw/issues"
},
"engines": {
"node": ">=22"
},
"openclaw": {
"extensions": [
"./src/index.ts"
],
"primaryCredential": "apiKey",
"requires": {
"config": [
"apiKey"
]
},
"alternateCredentials": [
"tempoSigningKey"
],
"compat": {
"pluginApi": ">=2026.3.28",
"minGatewayVersion": "2026.3.28"
},
"build": {
"openclawVersion": "2026.3.28",
"pluginSdkVersion": "2026.3.28"
}
},
"files": [
"src/",
"skills/",
"openclaw.plugin.json"
],
"keywords": [
"openclaw-plugin",
"twitter",
"x",
"automation",
"tweetclaw",
"xquik",
"twitter-api",
"x-api",
"social-media",
"scraper",
"mcp",
"ai-agent",
"data-extraction",
"giveaway",
"monitoring",
"tweet",
"twitter-scraper",
"twitter-bot",
"x-twitter",
"tweet-api",
"twitter-automation",
"openclaw",
"mcp-server"
],
"scripts": {
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"knip": "knip --strict --include-libs --treat-config-hints-as-errors",
"cpd": "jscpd .",
"check-suppressions": "tsx check-suppressions.ts",
"check-em-dash": "tsx check-em-dash.ts",
"check-versions": "node scripts/check-versions.mjs",
"prepublishOnly": "node scripts/check-versions.mjs",
"check:all": "npm run typecheck && npm run lint && npm run cpd && npm run knip && npm run check-suppressions && npm run check-em-dash && npm run check-versions && npm run test:coverage"
},
"peerDependencies": {
"mppx": ">=0.1.0",
"openclaw": ">=2026.2.0",
"viem": ">=2.0.0"
},
"peerDependenciesMeta": {
"mppx": {
"optional": true
},
"viem": {
"optional": true
}
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@sinclair/typebox": "^0.34.48",
"@types/node": "^25.5.0",
"@typescript-eslint/eslint-plugin": "^8.57.0",
"@typescript-eslint/parser": "^8.57.0",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/eslint-plugin": "^1.6.11",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-n": "^17.24.0",
"eslint-plugin-no-secrets": "^2.3.3",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-regexp": "^3.1.0",
"eslint-plugin-security": "^4.0.0",
"eslint-plugin-sonarjs": "^4.0.2",
"eslint-plugin-unicorn": "^63.0.0",
"globals": "^17.4.0",
"jscpd": "^4.0.8",
"knip": "^5.86.0",
"tsx": "^4.21.0",
"typescript": "^5.8.0",
"vitest": "^3.1.0"
},
"overrides": {
"vite": ">=7.3.2"
}
}