-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.41 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.41 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
{
"name": "xint",
"version": "2026.3.16",
"author": "Nyk",
"repository": {
"type": "git",
"url": "https://github.com/0xNyk/xint.git"
},
"main": "xint.ts",
"bin": {
"xint": "xint.ts"
},
"bugs": {
"url": "https://github.com/0xNyk/xint/issues"
},
"description": "X Intelligence CLI — search, analyze, and engage on X/Twitter from your terminal",
"engines": {
"bun": ">=1.0.0"
},
"homepage": "https://github.com/0xNyk/xint#readme",
"keywords": [
"twitter",
"x",
"cli",
"osint",
"intelligence",
"search",
"api",
"tweets",
"bookmarks",
"trends",
"grok",
"xai",
"oauth",
"bun",
"typescript",
"mcp",
"model-context-protocol",
"ai-agents"
],
"license": "MIT",
"scripts": {
"start": "bun run xint.ts",
"typecheck": "bun x tsc --noEmit -p tsconfig.typecheck.json",
"test": "bun test",
"search": "bun run xint.ts search",
"trends": "bun run xint.ts trends",
"mcp": "bun run xint.ts mcp-server",
"package-api:dev": "bun run xint.ts package-api-server --port=8080",
"changeset": "changeset",
"version": "changeset version",
"changelog": "changeset version && changeset-changelog"
},
"type": "module",
"dependencies": {
"@modelcontextprotocol/sdk": "1.26.0"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@types/node": "^25.3.0",
"bun-types": "^1.3.9"
}
}