-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.16 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
{
"name": "x-api-cli",
"version": "1.0.7",
"description": "Node.js CLI for posting and deleting tweets with X API v2 using OAuth 1.0a.",
"homepage": "https://github.com/eliaseffects/x-api-cli#readme",
"repository": {
"type": "git",
"url": "https://github.com/eliaseffects/x-api-cli"
},
"bugs": {
"url": "https://github.com/eliaseffects/x-api-cli/issues"
},
"main": "x-post.mjs",
"type": "module",
"bin": {
"x-post": "x-post.mjs",
"x-delete": "x-delete.mjs"
},
"files": [
"assets",
"README.md",
"LICENSE",
"lib",
"x-post.mjs",
"x-delete.mjs"
],
"scripts": {
"lint": "node --check x-post.mjs && node --check x-delete.mjs && node --check lib/x-cli-common.mjs && node --check test/x-cli-common.test.mjs",
"test": "npm run lint && node --test",
"prepublishOnly": "npm test"
},
"keywords": [
"twitter",
"x",
"x-api",
"twitter-api-v2",
"api",
"cli",
"oauth",
"tweet",
"automation",
"developer-tools"
],
"author": "Reality Shifting Tech",
"license": "MIT",
"engines": {
"node": ">=18.18.0"
},
"dependencies": {
"twitter-api-v2": "^1.29.0"
}
}